In This Article

ITypeDefinitionCollection Interface

Provides the base requirements for a collection of ITypeDefinition objects.

public interface ITypeDefinitionCollection : IObservableCollection<ITypeDefinition>, IList<ITypeDefinition>, ICollection<ITypeDefinition>, IEnumerable<ITypeDefinition>, IEnumerable

Properties

Item[String, Boolean]

Gets the ITypeDefinition with the specified name.

[C#] In C#, this property is the indexer for the ITypeDefinitionCollection interface.

ITypeDefinition this[string name, bool caseSensitive] { get; }
Parameter Type Description
name String

The name of the ITypeDefinition to return.

caseSensitive Boolean

Whether to perform a case-sensitive name search.

Property Value

ITypeDefinition:

The ITypeDefinition with the specified name.

Inherited Members

Extension Methods