ConfigurationSectionGroupCollection.GetKey(Int32) メソッド

定義

この ConfigurationSectionGroup オブジェクトに格納されている、指定した ConfigurationSectionGroupCollection オブジェクトのキーを取得します。

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

パラメーター

index
Int32

キーが返されるセクション グループのインデックス。

戻り値

指定したインデックス位置にある ConfigurationSectionGroup オブジェクトのキー。

GetKey メソッドを使用するコード例を次に示します。

int i = 0;
while (groupEnum.MoveNext())
{
    string groupName = groups.GetKey(i);
    Console.WriteLine(
        "Group name: {0}", groupName);
    i += 1;
}
Dim i As Integer = 0
While groupEnum.MoveNext()
   Dim groupName As String = groups.GetKey(i)
   Console.WriteLine("Group name: {0}", groupName)
   i += 1
End While

適用対象

こちらもご覧ください