Ejemplo n.º 1
0
 /// <summary>Constructor</summary>
 /// <param name="uint32">The UInteger32 value to initialize the class with.</param>
 public TimeTicks(UInteger32 uint32)
     : base(uint32)
 {
     Type = SnmpConstants.SmiTimeTicks;
 }
Ejemplo n.º 2
0
 /// <summary>Constructor</summary>
 /// <param name="uint32">Value to initialize the class with.</param>
 public V2PartyClock(UInteger32 uint32)
     : base(uint32)
 {
     Type = SnmpConstants.SmiPartyClock;
 }
Ejemplo n.º 3
0
 /// <summary>Constructor</summary>
 /// <param name="uint32">UInteger32 value</param>
 public Counter32(UInteger32 uint32)
     : base(uint32)
 {
     Type = SnmpConstants.SmiCounter32;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Constructs a new object with the value
 /// constrained in the UInteger32 object.
 /// </summary>
 /// <param name="uint32">The UInteger32 object to copy.</param>
 public Gauge32(UInteger32 uint32)
     : base(uint32)
 {
     Type = SnmpConstants.SmiGauge32;
 }