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:
authorAndreas N <andreas@mono-cvs.ximian.com>2003-07-14 14:33:59 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-14 14:33:59 +0400
commitc87a8b492906dc8288cfc613da5a58a782605b9f (patch)
tree3a4805da3e3c7495f4450a841ccf470418796855 /mcs/class/System/System.Diagnostics
parentba7287d57d9a92847e741861fac4cf574c39779c (diff)
2003-07-14 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* PerformanceCounterCategory.cs: Fixed signatures svn path=/trunk/mcs/; revision=16193
Diffstat (limited to 'mcs/class/System/System.Diagnostics')
-rw-r--r--mcs/class/System/System.Diagnostics/ChangeLog6
-rw-r--r--mcs/class/System/System.Diagnostics/PerformanceCounterCategory.cs8
2 files changed, 9 insertions, 5 deletions
diff --git a/mcs/class/System/System.Diagnostics/ChangeLog b/mcs/class/System/System.Diagnostics/ChangeLog
index d62a20148c3..ac21743e0c1 100644
--- a/mcs/class/System/System.Diagnostics/ChangeLog
+++ b/mcs/class/System/System.Diagnostics/ChangeLog
@@ -1,6 +1,10 @@
+2003-07-14 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
+
+ * PerformanceCounterCategory.cs: Fixed signatures
+
2003-07-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
- * PerformanceCounter: Implemented or implementation added
+ * PerformanceCounter.cs: Implemented or implementation added
2003-07-13 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
diff --git a/mcs/class/System/System.Diagnostics/PerformanceCounterCategory.cs b/mcs/class/System/System.Diagnostics/PerformanceCounterCategory.cs
index cc8c194c8b9..8346392c86b 100644
--- a/mcs/class/System/System.Diagnostics/PerformanceCounterCategory.cs
+++ b/mcs/class/System/System.Diagnostics/PerformanceCounterCategory.cs
@@ -77,7 +77,7 @@ namespace System.Diagnostics
// may throw ArgumentNullException, InvalidOperationException
// (categoryName is ""), Win32Exception
[MonoTODO]
- public bool CounterExists (string counterName,
+ public static bool CounterExists (string counterName,
string categoryName)
{
throw new NotImplementedException ();
@@ -86,7 +86,7 @@ namespace System.Diagnostics
// may throw ArgumentNullException, InvalidOperationException
// (categoryName is "", machine name is bad), Win32Exception
[MonoTODO]
- public bool CounterExists (string counterName,
+ public static bool CounterExists (string counterName,
string categoryName,
string machineName)
{
@@ -169,14 +169,14 @@ namespace System.Diagnostics
}
[MonoTODO]
- public bool InstanceExists (string instanceName,
+ public static bool InstanceExists (string instanceName,
string categoryName)
{
throw new NotImplementedException ();
}
[MonoTODO]
- public bool InstanceExists (string instanceName,
+ public static bool InstanceExists (string instanceName,
string categoryName,
string machineName)
{