ServiceModelConfigurationElementCollection<ConfigurationElementType>.Item[] 属性

定义

获取或设置此 ConfigurationElement 对象的属性 (Property)、属性 (Attribute) 或子元素。

重载

Item[Int32]

获取或设置具有指定索引的 ConfigurationElement 对象的属性 (Property)、属性 (Attribute) 或子元素。

Item[Object]

获取或设置具有指定键的 ConfigurationElement 对象的属性 (Property)、属性 (Attribute) 或子元素。

Item[Int32]

获取或设置具有指定索引的 ConfigurationElement 对象的属性 (Property)、属性 (Attribute) 或子元素。

public:
 property ConfigurationElementType default[int] { ConfigurationElementType get(int index); void set(int index, ConfigurationElementType value); };
public ConfigurationElementType this[int index] { get; set; }
member this.Item(int) : 'ConfigurationElementType with get, set
Default Public Property Item(index As Integer) As ConfigurationElementType

参数

index
Int32

要访问的元素的索引。

属性值

ConfigurationElementType

集合中位于指定索引处的项。

例外

indexnull

适用于

Item[Object]

获取或设置具有指定键的 ConfigurationElement 对象的属性 (Property)、属性 (Attribute) 或子元素。

public:
 virtual property ConfigurationElementType default[System::Object ^] { ConfigurationElementType get(System::Object ^ key); void set(System::Object ^ key, ConfigurationElementType value); };
public virtual ConfigurationElementType this[object key] { get; set; }
member this.Item(obj) : 'ConfigurationElementType with get, set
Default Public Overridable Property Item(key As Object) As ConfigurationElementType

参数

key
Object

要访问的元素的键。

属性值

ConfigurationElementType

集合中位于指定指定键的项。

例外

keynull

key 未找到。

适用于