PerformanceCounter.ReadOnly Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.