ASN.1 Counter64 value implementation.

Namespace:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.6.0.0 (0.6.0.0)

Syntax

C#
[SerializableAttribute]
public class Counter64 : AsnType, IComparable<ulong>, 
	IComparable<Counter64>
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class Counter64 _
	Inherits AsnType _
	Implements IComparable(Of ULong), IComparable(Of Counter64)
Visual C++
[SerializableAttribute]
public ref class Counter64 : public AsnType, 
	IComparable<unsigned long long>, IComparable<Counter64^>

Remarks

Counter64 value is unsigned 64-bit integer value that is incremented by the agent until maximum value is reached. When maximum value is reached, Counter64 value will roll over to 0.

Inheritance Hierarchy

System..::.Object
  SnmpSharpNet..::.AsnType
    SnmpSharpNet..::.Counter64

See Also