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/PerformanceCounterInstaller.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/PerformanceCounterInstaller.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/PerformanceCounterInstaller.cs82
1 files changed, 82 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/PerformanceCounterInstaller.cs b/mcs/class/System/System.Diagnostics/PerformanceCounterInstaller.cs
new file mode 100644
index 00000000000..f6183e9e168
--- /dev/null
+++ b/mcs/class/System/System.Diagnostics/PerformanceCounterInstaller.cs
@@ -0,0 +1,82 @@
+//
+// System.Diagnostics.PerformanceCounterInstaller.cs
+//
+// Authors:
+// Jonathan Pryor (jonpryor@vt.edu)
+//
+// (C) 2002
+//
+
+using System;
+using System.Collections;
+// using System.Configuration.Install;
+using System.Diagnostics;
+using System.ComponentModel;
+
+namespace System.Diagnostics {
+
+ public class PerformanceCounterInstaller {
+
+// [MonoTODO]
+// public PerformanceCounterInstaller ()
+// {
+// }
+//
+// // may throw ArgumentNullException
+// [MonoTODO]
+// public string CategoryHelp {
+// get {throw new NotImplementedException ();}
+// set {
+// if (value == null)
+// throw new ArgumentNullException ();
+// throw new NotImplementedException ();
+// }
+// }
+//
+// [MonoTODO]
+// public string CategoryName {
+// get {throw new NotImplementedException ();}
+// set {
+// if (value == null)
+// throw new ArgumentNullException ();
+// throw new NotImplementedException ();
+// }
+// }
+//
+// [MonoTODO]
+// public CounterCreationDataCollection Counters {
+// get {throw new NotImplementedException ();}
+// }
+//
+// [MonoTODO]
+// public UninstallAction UninstallAction {
+// get {throw new NotImplementedException ();}
+// set {throw new NotImplementedException ();}
+// }
+//
+// [MonoTODO]
+// public override void CopyFromComponent (IComponent component)
+// {
+// throw new NotImplementedException ();
+// }
+//
+// [MonoTODO]
+// public override void Install (IDictionary stateSaver)
+// {
+// throw new NotImplementedException ();
+// }
+//
+// [MonoTODO]
+// public override void Rollback (IDictionary savedState)
+// {
+// throw new NotImplementedException ();
+// }
+//
+// [MonoTODO]
+// public override void Uninstall (IDictionary savedState)
+// {
+// throw new NotImplementedException ();
+// }
+ }
+}
+