C# Class SnmpSharpNet.Gauge32

Inheritance: UInteger32, ICloneable
Datei anzeigen Open project: griffina/SnmpSharpNet Class Usage Examples

Public Methods

Method Description
Clone ( ) : Object

Duplicate current object.

Gauge32 ( ) : System

Constructs the default counter object. The initial value is defined by the super class default constructor

Gauge32 ( Gauge32 second ) : System

Constructs a new object with the same value as the passed object.

Gauge32 ( System val ) : System

Constructor. Initialize class value with the unsigned integer 32-bit value encoded as string in the argument.

Gauge32 ( UInt32 val ) : System

Constructor

Gauge32 ( UInteger32 uint32 ) : System

Constructs a new object with the value constrained in the UInteger32 object.

Method Details

Clone() public method

Duplicate current object.
public Clone ( ) : Object
return System.Object

Gauge32() public method

Constructs the default counter object. The initial value is defined by the super class default constructor
public Gauge32 ( ) : System
return System

Gauge32() public method

Constructs a new object with the same value as the passed object.
public Gauge32 ( Gauge32 second ) : System
second Gauge32 The object to recover values from. ///
return System

Gauge32() public method

Constructor. Initialize class value with the unsigned integer 32-bit value encoded as string in the argument.
public Gauge32 ( System val ) : System
val System 32-bit unsigned integer encoded as a string ///
return System

Gauge32() public method

Constructor
public Gauge32 ( UInt32 val ) : System
val System.UInt32 Initializing value
return System

Gauge32() public method

Constructs a new object with the value constrained in the UInteger32 object.
public Gauge32 ( UInteger32 uint32 ) : System
uint32 UInteger32 The UInteger32 object to copy. ///
return System