Udostępnij za pośrednictwem


ConfigurationSectionCollection.GetKey(Int32) Metoda

Definicja

Pobiera klucz określonego ConfigurationSection obiektu zawartego w tym ConfigurationSectionCollection obiekcie.

public:
 System::String ^ GetKey(int index);
public string GetKey (int index);
member this.GetKey : int -> string
Public Function GetKey (index As Integer) As String

Parametry

index
Int32

Indeks ConfigurationSection obiektu, którego klucz ma zostać zwrócony.

Zwraca

Klucz ConfigurationSection obiektu w określonym indeksie.

Przykłady

W poniższym przykładzie kodu pokazano, jak używać polecenia GetKey.

int i = 0;
while (secEnum.MoveNext())
{
    string setionName = sections.GetKey(i);
    Console.WriteLine(
        "Section name: {0}", setionName);
    i += 1;
}
Dim i As Integer = 0
While secEnum.MoveNext()
    Dim setionName _
    As String = sections.GetKey(i)
    Console.WriteLine( _
    "Section name: {0}", setionName)
    i += 1
End While

Dotyczy

Zobacz też