ServiceModelExtensionCollectionElement<TServiceModelExtensionElement>.Item[] 属性

定义

获取集合中的项。

重载

Item[Type]

获取集合中指定类型的项。

Item[Int32]

获取集合中指定索引处的项。

Item[Type]

获取集合中指定类型的项。

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

参数

extensionType
Type

要在集合中检索的项的类型。

属性值

TServiceModelExtensionElement

一个 ServiceModelExtensionElement,表示位于集合内指定索引处的项。

例外

extensionTypenull

extensionType 无效。

适用于

Item[Int32]

获取集合中指定索引处的项。

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

参数

index
Int32

要检索的项在集合中的索引。

属性值

TServiceModelExtensionElement

一个 ServiceModelExtensionElement,表示位于集合内指定索引处的项。

适用于