In This Article

IClassificationTypeRegistry Interface

Provides the base requirements for an object that provides a registry of IClassificationType data.

public interface IClassificationTypeRegistry

Properties

Count

Gets the number of entries in the registry.

int Count { get; }

Property Value

int:

The number of entries in the registry.

this[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 string

The key of the IClassificationType to return.

Property Value

IClassificationType:

The IClassificationType with the specified key.