Class KnowledgeCollectionDescriptor
เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน
Namespace: Cephalon.Retrieval.Services
Assembly: Cephalon.Retrieval.dll
Describes a knowledge collection that can be surfaced through the retrieval runtime pack.
public sealed class KnowledgeCollectionDescriptorInheritance
Section titled “Inheritance”object ← KnowledgeCollectionDescriptor
Inherited Members
Section titled “Inherited Members”object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
Section titled “Constructors”KnowledgeCollectionDescriptor(string, string, string, IReadOnlyList<string>?)
Section titled “ KnowledgeCollectionDescriptor(string, string, string, IReadOnlyList<string>?)”Creates a new knowledge collection descriptor.
public KnowledgeCollectionDescriptor(string id, string displayName, string description, IReadOnlyList<string>? tags = null)Parameters
Section titled “Parameters”id string
The stable collection identifier.
displayName string
The operator-facing collection name.
description string
The human-readable description of the collection.
tags IReadOnlyList<string>?
Optional tags that classify the collection.
Properties
Section titled “Properties”Description
Section titled “ Description”Gets the human-readable description of the collection.
public string Description { get; }Property Value
Section titled “Property Value”DisplayName
Section titled “ DisplayName”Gets the operator-facing display name for the collection.
public string DisplayName { get; }Property Value
Section titled “Property Value”Gets the stable collection identifier.
public string Id { get; }Property Value
Section titled “Property Value”Gets the normalized tag set associated with the collection.
public IReadOnlyList<string> Tags { get; }