ServiceModelExtensionCollectionElement<TServiceModelExtensionElement>.Item[] Property
Definition
Gets an item within the collection.
Overloads
Item[Type] |
Gets the item of the specified type within the collection. |
Item[Int32] |
Gets the item at the specified index within the collection. |
Item[Type]
Gets the item of the specified type within the collection.
public:
property TServiceModelExtensionElement default[Type ^] { TServiceModelExtensionElement get(Type ^ extensionType); };
public TServiceModelExtensionElement this[Type extensionType] { get; }
member this.Item(Type) : 'ServiceModelExtensionElement
Default Public ReadOnly Property Item(extensionType As Type) As TServiceModelExtensionElement
Parameters
- extensionType
- Type
The type of the item in the collection to retrieve.
Property Value
- TServiceModelExtensionElement
A ServiceModelExtensionElement that represents the item located at the specified index within the collection.
Exceptions
extensionType
is null
.
extensionType
is invalid.
Applies to
Item[Int32]
Gets the item at the specified index within the collection.
public:
property TServiceModelExtensionElement default[int] { TServiceModelExtensionElement get(int index); };
public TServiceModelExtensionElement this[int index] { get; }
member this.Item(int) : 'ServiceModelExtensionElement
Default Public ReadOnly Property Item(index As Integer) As TServiceModelExtensionElement
Parameters
- index
- Int32
The index of the item in the collection to retrieve.
Property Value
- TServiceModelExtensionElement
A ServiceModelExtensionElement that represents the item located at the specified index within the collection.