Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2002-07-13 22:36:20 +0400
committerJonathan Pryor <jpryor@novell.com>2002-07-13 22:36:20 +0400
commitbce4656698ce8e7afeeb6949e2be8a9cb70ea203 (patch)
tree71547fdad190febeecbb2b59a8d2afe8a61d6d73 /mcs/class/System/System.Diagnostics/PerformanceCounterType.cs
parentc2ba7bd4d727c89c469a36ab442f41a60f3b97af (diff)
* CounterCreationData.cs: Implemented
* CounterCreationDataCollection.cs: Implemented * CounterSample.cs: Stubbed Out * CounterSampleCalculator.cs: Stubbed Out * InstanceData.cs: Implemented * InstanceDataCollection.cs: Implemented * InstanceDataCollectionCollection.cs: Implemented * MonitoringDescriptionAttribute.cs: Implemented * PerformanceCounter.cs: Stubbed Out * PerformanceCounterCategory.cs: Stubbed Out * PerformanceCounterInstaller.cs: Stubbed Out * PerformanceCounterManager.cs: Stubbed Out * PerformanceCounterPermission.cs: Stubbed Out * PerformanceCounterPermissionAccess.cs: Implemented * PerformanceCounterPermissionAttribute.cs: Stubbed Out * PerformanceCounterPermissionEntry.cs: Stubbed Out * PerformanceCounterPermissionEntryCollection.cs: Implemented * PerformanceCounterType.cs: Implemented svn path=/trunk/mcs/; revision=5770
Diffstat (limited to 'mcs/class/System/System.Diagnostics/PerformanceCounterType.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/PerformanceCounterType.cs47
1 files changed, 47 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/PerformanceCounterType.cs b/mcs/class/System/System.Diagnostics/PerformanceCounterType.cs
new file mode 100644
index 00000000000..a98462be1b5
--- /dev/null
+++ b/mcs/class/System/System.Diagnostics/PerformanceCounterType.cs
@@ -0,0 +1,47 @@
+//
+// System.Diagnostics.PerformanceCounterType.cs
+//
+// Authors:
+// Jonathan Pryor (jonpryor@vt.edu)
+//
+// (C) 2002
+//
+
+using System;
+using System.Diagnostics;
+
+namespace System.Diagnostics {
+
+ [Serializable]
+ public enum PerformanceCounterType {
+ NumberOfItemsHEX32=0x00000000,
+ NumberOfItemsHEX64=0x00000100,
+ NumberOfItems32=0x00010000,
+ NumberOfItems64=0x00010100,
+ CounterDelta32=0x00400400,
+ CounterDelta64=0x00400500,
+ SampleCounter=0x00410400,
+ CountPerTimeInterval32=0x00450400,
+ CountPerTimeInterval64=0x00450500,
+ RateOfCountsPerSecond32=0x10410400,
+ RateOfCountsPerSecond64=0x10410500,
+ RawFraction=0x20020400,
+ CounterTimer=0x20410500,
+ Timer100Ns=0x20510500,
+ SampleFraction=0x20C20400,
+ CounterTimerInverse=0x21410500,
+ Timer100NsInverse=0x21510500,
+ CounterMultiTimer=0x22410500,
+ CounterMultiTimer100Ns=0x22510500,
+ CounterMultiTimerInverse=0x23410500,
+ CounterMultiTimer100NsInverse=0x23510500,
+ AverageTimer32=0x30020400,
+ ElapsedTime=0x30240500,
+ AverageCount64=0x40020500,
+ SampleBase=0x40030401,
+ AverageBase=0x40030402,
+ RawBase=0x40030403,
+ CounterMultiBase=0x42030500
+ }
+}
+