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-18 15:38:19 +0400
committerAndreas N <andreas@mono-cvs.ximian.com>2003-07-18 15:38:19 +0400
commitca390b431097790a602ade670802cf6180c51041 (patch)
treeecf02e748e65a4b78d3b66e3bc599757bac23e82 /mcs/class/System/System.Diagnostics/PerformanceCounter.cs
parent565b8e5b9d25810096301b77f853d1516011d406 (diff)
2003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
* AlphabeticalEnumConverter.cs: Added * EventLogEntry.cs: Implemented * EventLogPermissionEntryCollection.cs: Fixed signature and implementation of indexer * EventLogTraceListener.cs: Fixed signature * PerformanceCounter.cs: Added missing attribute * PerformanceCounterType.cs: Added missing attribute * SRDescriptionAttribute.cs: Added and implemented svn path=/trunk/mcs/; revision=16399
Diffstat (limited to 'mcs/class/System/System.Diagnostics/PerformanceCounter.cs')
-rw-r--r--mcs/class/System/System.Diagnostics/PerformanceCounter.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/mcs/class/System/System.Diagnostics/PerformanceCounter.cs b/mcs/class/System/System.Diagnostics/PerformanceCounter.cs
index dca3b0e48c4..5223698ccd4 100644
--- a/mcs/class/System/System.Diagnostics/PerformanceCounter.cs
+++ b/mcs/class/System/System.Diagnostics/PerformanceCounter.cs
@@ -90,6 +90,7 @@ namespace System.Diagnostics {
// may throw ArgumentNullException
[DefaultValue (""), ReadOnly (true), RecommendedAsConfigurable (true)]
[TypeConverter ("System.Diagnostics.Design.CategoryValueConverter, " + Consts.AssemblySystem_Design)]
+ [SRDescription ("The category name for this performance counter.")]
public string CategoryName {
get {return categoryName;}
set {
@@ -110,6 +111,7 @@ namespace System.Diagnostics {
// may throw ArgumentNullException
[DefaultValue (""), ReadOnly (true), RecommendedAsConfigurable (true)]
[TypeConverter ("System.Diagnostics.Design.CounterNameConverter, " + Consts.AssemblySystem_Design)]
+ [SRDescription ("The name of this performance counter.")]
public string CounterName
{
get {return counterName;}
@@ -130,6 +132,7 @@ namespace System.Diagnostics {
[DefaultValue (""), ReadOnly (true), RecommendedAsConfigurable (true)]
[TypeConverter ("System.Diagnostics.Design.InstanceNameConverter, " + Consts.AssemblySystem_Design)]
+ [SRDescription ("The instance name for this performance counter.")]
public string InstanceName
{
get {return instanceName;}
@@ -139,6 +142,7 @@ namespace System.Diagnostics {
// may throw ArgumentException if machine name format is wrong
[MonoTODO("What's the machine name format?")]
[DefaultValue ("."), Browsable (false), RecommendedAsConfigurable (true)]
+ [SRDescription ("The machine where this performance counter resides.")]
public string MachineName {
get {return machineName;}
set {machineName = value;}