다음을 통해 공유


InstanceDataCollectionCollection.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입니다.

예제

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


// Process the InstanceDataCollectionCollection for this category.
PerformanceCounterCategory pcc = new PerformanceCounterCategory(categoryName);
InstanceDataCollectionCollection idColCol = pcc.ReadCategory();

ICollection idColColKeys = idColCol.Keys;
string[] idCCKeysArray = new string[idColColKeys.Count];
idColColKeys.CopyTo(idCCKeysArray, 0);

ICollection idColColValues = idColCol.Values;
InstanceDataCollection[] idCCValuesArray = new InstanceDataCollection[idColColValues.Count];
idColColValues.CopyTo(idCCValuesArray, 0);

Console.WriteLine("InstanceDataCollectionCollection for \"{0}\" " +
    "has {1} elements.", categoryName, idColCol.Count);

// Display the InstanceDataCollectionCollection Keys and Values.
// The Keys and Values collections have the same number of elements.
int index;
for(index=0; index<idCCKeysArray.Length; index++)
{
    Console.WriteLine("  Next InstanceDataCollectionCollection " +
        "Key is \"{0}\"", idCCKeysArray[index]);
    ProcessInstanceDataCollection(idCCValuesArray[index]);
}

' Process the InstanceDataCollectionCollection for this category.
Dim pcc As New PerformanceCounterCategory(categoryName)
Dim idColCol As InstanceDataCollectionCollection = pcc.ReadCategory()

Dim idColColKeys As ICollection = idColCol.Keys
Dim idCCKeysArray(idColColKeys.Count - 1) As String
idColColKeys.CopyTo(idCCKeysArray, 0)

Dim idColColValues As ICollection = idColCol.Values
Dim idCCValuesArray(idColColValues.Count - 1) As InstanceDataCollection
idColColValues.CopyTo(idCCValuesArray, 0)

Console.WriteLine("InstanceDataCollectionCollection for ""{0}"" " & _
    "has {1} elements.", categoryName, idColCol.Count)

' Display the InstanceDataCollectionCollection Keys and Values.
' The Keys and Values collections have the same number of elements.
Dim index As Integer
For index = 0 To idCCKeysArray.Length - 1
    Console.WriteLine("  Next InstanceDataCollectionCollection " & _
        "Key is ""{0}""", idCCKeysArray(index))
    ProcessInstanceDataCollection(idCCValuesArray(index))
Next index

설명

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

적용 대상