PerformanceCounter.ReadOnly Property

Definition

Gets or sets a value indicating whether this PerformanceCounter instance is in read-only mode.

public:
 property bool ReadOnly { bool get(); void set(bool value); };
public bool ReadOnly { get; set; }
[System.ComponentModel.Browsable(false)]
public bool ReadOnly { get; set; }
member this.ReadOnly : bool with get, set
[<System.ComponentModel.Browsable(false)>]
member this.ReadOnly : bool with get, set
Public Property ReadOnly As Boolean

Property Value

true, if the PerformanceCounter instance is in read-only mode (even if the counter itself is a custom .NET Framework counter); false if it is in read/write mode. The default is the value set by the constructor.

Attributes

Remarks

For a system counter, ReadOnly should always true. You cannot write to a system counter.

Applies to