CounterData.Value 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定計數器資料。
public:
property long Value { long get(); void set(long value); };
public long Value { get; set; }
public long Value { [System.Security.SecurityCritical] get; [System.Security.SecurityCritical] set; }
member this.Value : int64 with get, set
[<get: System.Security.SecurityCritical>]
[<set: System.Security.SecurityCritical>]
member this.Value : int64 with get, set
Public Property Value As Long
屬性值
計數器資料。
- 屬性
範例
如需範例,請參閱 System.Diagnostics.PerformanceData。
備註
此屬性可讓您安全地存取多線程應用程式的計數器數據。 如果效能是主要考慮,請使用 RawValue 屬性;不過, RawValue 屬性不是安全線程。
請注意,屬性Value在 .NET Framework 3.5 中不是安全線程。
若要遞增計數器值,請考慮使用 Increment 或 IncrementBy 方法。