共用方式為


CounterData.Value 屬性

定義

取得或設定計數器資料。

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 中不是安全線程。

若要遞增計數器值,請考慮使用 IncrementIncrementBy 方法。

適用於