NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

PerformanceCounter.IncrementBy

Increments the value of this counter. If counter type is of a 32-bit size, it'll truncate the value given to 32 bits.

[Visual Basic]
Public Function IncrementBy( _
   ByVal value As Long _
) As Long
[C#]
public long IncrementBy(
   long value
);
[C++]
public: __int64 IncrementBy(
   __int64 value
);
[JScript]
public function IncrementBy(
   value : long
) : long;

Parameters

value
Value to increment (decrements with a negative value).

See Also

PerformanceCounter Class | PerformanceCounter Members | System.Diagnostics Namespace