Method | Description | |
---|---|---|
Clone ( ) : Object |
Clone Vb object
|
|
ResetValue ( ) : void |
Reset Vb value to Null
|
|
Set ( |
SET class value from supplied Vb class
|
|
ToString ( ) : string |
Return printable string in the format oid: value
|
|
Vb ( ) : System |
Standard constructor. Initializes values to null.
|
|
Vb ( Oid oid ) : System |
Construct Vb with the supplied OID and Null value
|
|
Vb ( Oid oid, |
Construct Vb with the OID and value
|
|
Vb ( |
Copy constructor. Initialize class with cloned values from second class.
|
|
Vb ( string oid ) : System |
Construct Vb with the oid value and Null value.
|
|
decode ( byte buffer, int offset ) : int |
Decode BER encoded variable binding.
|
|
encode ( MutableByte buffer ) : void |
BER encode the variable binding
|
public Vb ( Oid oid, |
||
oid | Oid | OID |
value | Value | |
return | System |
public Vb ( |
||
second | Vb class to clone data from. | |
return | System |
public Vb ( string oid ) : System | ||
oid | string | String representing OID value to set |
return | System |
public decode ( byte buffer, int offset ) : int | ||
buffer | byte | BER encoded buffer /// |
offset | int | Offset in the data buffer from where to start decoding. Offset is /// passed by reference and will contain the offset of the byte immediately after the parsed /// variable binding. /// |
return | int |
public encode ( MutableByte buffer ) : void | ||
buffer | MutableByte | |
return | void |