ITypeMemberDefinitionCollection Interface
Provides the base requirements for a collection of ITypeMemberDefinition objects.
public interface ITypeMemberDefinitionCollection : IObservableCollection<ITypeMemberDefinition>
Properties
this[string, bool]
Gets the collection of ITypeMemberDefinition objects with the specified name, since there may potentially be member overloads with the same name.
[C#] In C#, this property is the indexer for the ITypeMemberDefinitionCollection
interface.
IEnumerable<ITypeMemberDefinition> this[string name, bool caseSensitive] { get; }
Parameter | Type | Description |
---|---|---|
name | string | The name of the ITypeMemberDefinition objects to return. |
caseSensitive | bool | Whether to perform a case-sensitive name search. |
Property Value
- IEnumerable<ITypeMemberDefinition>:
The collection of ITypeMemberDefinition objects with the specified name.