MessageUnserialize Method (Byte, Int32, Int32) |
Unserialized the supplied byte array into a new Message.
Namespace:
OBCOM.NetClient
Assembly:
OBCOM.NetClient (in OBCOM.NetClient.dll) Version: 40.82.5945.17884 (40.82.5945.17884)
Syntax public static Message Unserialize(
byte[] bytes,
int offset,
int length
)
Public Shared Function Unserialize (
bytes As Byte(),
offset As Integer,
length As Integer
) As Message
Parameters
- bytes
- Type: SystemByte
Array of bytes containing a serialized Message. - offset
- Type: SystemInt32
Initial offset of the bytes subarray. - length
- Type: SystemInt32
Length of the bytes subarray.
Return Value
Type:
Messagea new Message.
Remarks
This method has the same effect as calling Unserialize(bytes, offset,
length, false).
See Also