다음을 통해 공유


InstanceDataCollection.Keys 속성

정의

이 인스턴스 데이터와 관련된 개체 및 개체의 카운터 레지스트리 키를 가져옵니다.

public:
 property System::Collections::ICollection ^ Keys { System::Collections::ICollection ^ get(); };
public System.Collections.ICollection Keys { get; }
member this.Keys : System.Collections.ICollection
Public ReadOnly Property Keys As ICollection

속성 값

개체별 레지스트리 키 집합을 나타내는 ICollection입니다.

예제

다음 코드 예제에서는 의 속성을 InstanceDataCollection 사용하여 Keys 의 배열String로 변환되는 instance 이름의 컬렉션을 반환합니다. 속성을 사용하여 개체의 InstanceData 배열을 Values 생성합니다. instance 이름 배열의 각 요소에 대해 이름을 표시하고 함수를 호출하여 연결된 InstanceData 개체를 처리합니다.

// Display the contents of an InstanceDataCollection.
public static void ProcessInstanceDataCollection(InstanceDataCollection idCol)
{

    ICollection idColKeys = idCol.Keys;
    string[] idColKeysArray = new string[idColKeys.Count];
    idColKeys.CopyTo(idColKeysArray, 0);

    ICollection idColValues = idCol.Values;
    InstanceData[] idColValuesArray = new InstanceData[idColValues.Count];
    idColValues.CopyTo(idColValuesArray, 0);

    Console.WriteLine("  InstanceDataCollection for \"{0}\" " +
        "has {1} elements.", idCol.CounterName, idCol.Count);

    // Display the InstanceDataCollection Keys and Values.
    // The Keys and Values collections have the same number of elements.
    int index;
    for(index=0; index<idColKeysArray.Length; index++)
    {
        Console.WriteLine("    Next InstanceDataCollection " +
            "Key is \"{0}\"", idColKeysArray[index]);
        ProcessInstanceDataObject(idColValuesArray[index]);
    }
}
' Display the contents of an InstanceDataCollection.
Sub ProcessInstanceDataCollection(ByVal idCol As InstanceDataCollection)

    Dim idColKeys As ICollection = idCol.Keys
    Dim idColKeysArray(idColKeys.Count - 1) As String
    idColKeys.CopyTo(idColKeysArray, 0)

    Dim idColValues As ICollection = idCol.Values
    Dim idColValuesArray(idColValues.Count - 1) As InstanceData
    idColValues.CopyTo(idColValuesArray, 0)

    Console.WriteLine("  InstanceDataCollection for ""{0}"" " & _
        "has {1} elements.", idCol.CounterName, idCol.Count)

    ' Display the InstanceDataCollection Keys and Values.
    ' The Keys and Values collections have the same number of elements.
    Dim index As Integer
    For index = 0 To idColKeysArray.Length - 1
        Console.WriteLine("    Next InstanceDataCollection " & _
            "Key is ""{0}""", idColKeysArray(index))
        ProcessInstanceDataObject(idColValuesArray(index))
    Next index
End Sub

설명

각 소프트웨어 구성 요소가 설치 되 고 실행 하는 동안 카운터 데이터를 기록 하는 경우 해당 개체 및 카운터에 대 한 키를 만듭니다. 다른 레지스트리 데이터에 액세스하는 것처럼 이 데이터에 액세스할 수 있습니다. 그러나 레지스트리를 사용하여 성능 데이터를 수집하지만 데이터는 레지스트리 데이터베이스에 저장되지 않습니다. 대신 시스템은 적절한 시스템 개체 관리자로부터 데이터를 수집합니다.

적용 대상