AuthenticationModuleElementCollection.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定具有指定之索引或機碼的項目。
多載
Item[Int32] |
取得或設定位於集合指定位置的元素。 |
Item[String] |
取得或設定具有指定索引鍵的項目。 |
Item[Int32]
取得或設定位於集合指定位置的元素。
public:
property System::Net::Configuration::AuthenticationModuleElement ^ default[int] { System::Net::Configuration::AuthenticationModuleElement ^ get(int index); void set(int index, System::Net::Configuration::AuthenticationModuleElement ^ value); };
public System.Net.Configuration.AuthenticationModuleElement this[int index] { get; set; }
member this.Item(int) : System.Net.Configuration.AuthenticationModuleElement with get, set
Default Public Property Item(index As Integer) As AuthenticationModuleElement
參數
- index
- Int32
元素以零起始的索引。
屬性值
位於指定位置處的 AuthenticationModuleElement。
另請參閱
適用於
Item[String]
取得或設定具有指定索引鍵的項目。
public:
property System::Net::Configuration::AuthenticationModuleElement ^ default[System::String ^] { System::Net::Configuration::AuthenticationModuleElement ^ get(System::String ^ name); void set(System::String ^ name, System::Net::Configuration::AuthenticationModuleElement ^ value); };
public System.Net.Configuration.AuthenticationModuleElement this[string name] { get; set; }
member this.Item(string) : System.Net.Configuration.AuthenticationModuleElement with get, set
Default Public Property Item(name As String) As AuthenticationModuleElement
參數
- name
- String
集合中項目的索引鍵。
屬性值
附指定索引鍵的 AuthenticationModuleElement,如果沒有附指定索引鍵的項目則為 null
。