Method | Description | |
---|---|---|
BinaryField ( ) : System |
Creates a new binary data field and initializes the data to null.
|
|
BinaryField ( byte data, int offset, int length ) : System |
Create a new binary field that contains the give binary data.
|
|
Parse ( byte data, int offset ) : int |
Parses the binary data from a given byte array.
|
|
WriteToStream ( Stream stream ) : void |
Writes the binary data field to a stream.
|
public BinaryField ( byte data, int offset, int length ) : System | ||
data | byte | The data to be contained in the field. |
offset | int | |
length | int | |
return | System |
public Parse ( byte data, int offset ) : int | ||
data | byte | The byte array to parse from. |
offset | int | The index at which to start parsing. |
return | int |
public WriteToStream ( Stream stream ) : void | ||
stream | Stream | The stream to write to. |
return | void |