TypeElementCollection.Item[] 属性

定义

获取或设置集合中的元素。

重载

Item[Int32]

获取或设置集合中指定索引处的元素。

Item[Object]

获取或设置集合中有指定键的 TypeElement

Item[Int32]

获取或设置集合中指定索引处的元素。

public:
 property System::Web::Services::Configuration::TypeElement ^ default[int] { System::Web::Services::Configuration::TypeElement ^ get(int index); void set(int index, System::Web::Services::Configuration::TypeElement ^ value); };
public System.Web.Services.Configuration.TypeElement this[int index] { get; set; }
member this.Item(int) : System.Web.Services.Configuration.TypeElement with get, set
Default Public Property Item(index As Integer) As TypeElement

参数

index
Int32

集合中从零开始的索引。

属性值

TypeElement

位于指定索引位置的 TypeElement

适用于

Item[Object]

获取或设置集合中有指定键的 TypeElement

public:
 property System::Web::Services::Configuration::TypeElement ^ default[System::Object ^] { System::Web::Services::Configuration::TypeElement ^ get(System::Object ^ key); void set(System::Object ^ key, System::Web::Services::Configuration::TypeElement ^ value); };
public System.Web.Services.Configuration.TypeElement this[object key] { get; set; }
member this.Item(obj) : System.Web.Services.Configuration.TypeElement with get, set
Default Public Property Item(key As Object) As TypeElement

参数

key
Object

集合中要获取或设置的 TypeElement 的键。

属性值

TypeElement

具有指定键的 TypeElement

例外

在集合中没有找到具有指定键的 TypeElement

适用于