Click or drag to resize

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
)

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: Message
a new Message.
Remarks
This method has the same effect as calling Unserialize(bytes, offset, length, false).
See Also