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