Sdílet prostřednictvím


AuthenticationModuleElementCollection.Item[] Vlastnost

Definice

Získá nebo nastaví element se zadaným indexem nebo klíčem.

Přetížení

Item[Int32]

Získá nebo nastaví element na zadané pozici v kolekci.

Item[String]

Získá nebo nastaví element se zadaným klíčem.

Item[Int32]

Získá nebo nastaví element na zadané pozici v kolekci.

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

Parametry

index
Int32

Index elementu založený na nule.

Hodnota vlastnosti

Hodnota AuthenticationModuleElement v zadaném umístění.

Viz také

Platí pro

Item[String]

Získá nebo nastaví element se zadaným klíčem.

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

Parametry

name
String

Klíč pro prvek v kolekci.

Hodnota vlastnosti

Se AuthenticationModuleElement zadaným klíčem nebo null pokud neexistuje žádný prvek se zadaným klíčem.

Viz také

Platí pro