InstanceData Class
Holds instance data associated with a performance counter sample.
Namespace: System.Diagnostics
Assembly: System (in System.dll)
The InstanceData type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | InstanceData | Initializes a new instance of the InstanceData class, using the specified sample and performance counter instance. |
| Name | Description | |
|---|---|---|
![]() | InstanceName | Gets the instance name associated with this instance data. |
![]() | RawValue | Gets the raw data value associated with the performance counter sample. |
![]() | Sample | Gets the performance counter sample that generated this data. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The following code example displays the contents of the InstanceData objects that exist in a particular PerformanceCounterCategory on the local computer. It first displays a numbered list of PerformanceCounter categories. After the user enters the number of one of the categories, the sample displays, for each PerformanceCounter in the PerformanceCounterCategory, the instance data associated with each instance of the PerformanceCounter.
using System; using System.Diagnostics; class InstDataCopyToMod { private static string categoryName; public static void Main() { string catNumStr; int categoryNum; PerformanceCounterCategory[] categories = PerformanceCounterCategory.GetCategories(); // Create and sort an array of category names. string[] categoryNames = new string[categories.Length]; int catX; for(catX=0; catX<categories.Length; catX++) { categoryNames[catX] = categories[catX].CategoryName; } Array.Sort(categoryNames); Console.WriteLine("These categories are registered on this computer:"); for(catX=0; catX<categories.Length; catX++) { Console.WriteLine("{0,4} - {1}", catX+1, categoryNames[catX]); } // Ask the user to choose a category. Console.Write("Enter the category number from the above list: "); catNumStr = Console.ReadLine(); // Validate the entered category number. try { categoryNum = int.Parse(catNumStr); if (categoryNum<1||categoryNum>categories.Length) { throw new Exception(String.Format("The category number must be in the " + "range 1..{0}.", categories.Length)); } categoryName = categoryNames[(categoryNum-1)]; } catch(Exception ex) { Console.WriteLine("\"{0}\" is not a valid category number." + "\r\n{1}", catNumStr, ex.Message); return; } // Process the InstanceDataCollectionCollection for this category. PerformanceCounterCategory pcc = new PerformanceCounterCategory(categoryName); InstanceDataCollectionCollection idColCol = pcc.ReadCategory(); InstanceDataCollection[] idColArray = new InstanceDataCollection[idColCol.Count]; Console.WriteLine("InstanceDataCollectionCollection for \"{0}\" " + "has {1} elements.", categoryName, idColCol.Count); // Copy and process the InstanceDataCollection array. idColCol.CopyTo(idColArray, 0); foreach ( InstanceDataCollection idCol in idColArray ) { ProcessInstanceDataCollection(idCol); } } // Display the contents of an InstanceDataCollection. public static void ProcessInstanceDataCollection(InstanceDataCollection idCol) { InstanceData[] instDataArray = new InstanceData[idCol.Count]; Console.WriteLine(" InstanceDataCollection for \"{0}\" " + "has {1} elements.", idCol.CounterName, idCol.Count); // Copy and process the InstanceData array. idCol.CopyTo(instDataArray, 0); int idX; for(idX=0; idX<instDataArray.Length; idX++) { ProcessInstanceDataObject(instDataArray[idX].InstanceName, instDataArray[idX].Sample); } } // Display the contents of an InstanceData object. public static void ProcessInstanceDataObject(string name, CounterSample CSRef) { InstanceData instData = new InstanceData(name, CSRef); Console.WriteLine(" Data from InstanceData object:\r\n" + " InstanceName: {0,-31} RawValue: {1}", instData.InstanceName, instData.RawValue); CounterSample sample = instData.Sample; Console.WriteLine(" Data from CounterSample object:\r\n" + " CounterType: {0,-32} SystemFrequency: {1}\r\n" + " BaseValue: {2,-34} RawValue: {3}\r\n" + " CounterFrequency: {4,-27} CounterTimeStamp: {5}\r\n" + " TimeStamp: {6,-34} TimeStamp100nSec: {7}", sample.CounterType, sample.SystemFrequency, sample.BaseValue, sample.RawValue, sample.CounterFrequency, sample.CounterTimeStamp, sample.TimeStamp, sample.TimeStamp100nSec); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


