IClassificationTypeRegistry Interface
Provides the base requirements for an object that provides a registry of IClassificationType data.
public interface IClassificationTypeRegistry : IEnumerable<IClassificationType>, IEnumerable
Properties
Count
Gets the number of entries in the registry.
int Count { get; }
Property Value
- System.Int32:
The number of entries in the registry.
Item[String]
Gets the IClassificationType with the specified key.
[C#] In C#, this property is the indexer for the IClassificationTypeRegistry
interface.
IClassificationType this[string key] { get; }
Parameter | Type | Description |
---|---|---|
key | System.String | The key of the IClassificationType to return. |
Property Value
- IClassificationType:
The IClassificationType with the specified key.