C# Class Tx.Network.Snmp.VarBind

Immutable value type to hold Asn1Data
Show file Open project: Reactive-Extensions/Tx Class Usage Examples

Public Properties

Property Type Description
Asn1TypeInfo Asn1TagInfo
Oid ObjectIdentifier
Value object

Public Methods

Method Description
VarBind ( ObjectIdentifier oid )

Initializes a new instance of the VarBind struct with value null and Asn1.Null type.

VarBind ( ObjectIdentifier oid, object value, Asn1TagInfo asn1TypeInfo )

Initializes a new instance of the VarBind struct.

Method Details

VarBind() public method

Initializes a new instance of the VarBind struct with value null and Asn1.Null type.
public VarBind ( ObjectIdentifier oid )
oid ObjectIdentifier The oid.

VarBind() public method

Initializes a new instance of the VarBind struct.
public VarBind ( ObjectIdentifier oid, object value, Asn1TagInfo asn1TypeInfo )
oid ObjectIdentifier The oid.
value object The value.
asn1TypeInfo Asn1TagInfo The asn1 type information.

Property Details

Asn1TypeInfo public property

The Asn1TagInfo to provide Asn.1\Snmp tag information
public Asn1TagInfo,Tx.Network.Snmp Asn1TypeInfo
return Asn1TagInfo

Oid public property

The ObjectIdentifier for Varbind
public ObjectIdentifier Oid
return ObjectIdentifier

Value public property

The value for Varbind
public object Value
return object