PacketReaderCreate(Byte, Int32, Int32, Endian, BinaryTextEncoding, String) Method |
Creates a fixed size PacketReader from a buffer of data.
Namespace: Demo3D.IOAssembly: Demo3D.IO (in Demo3D.IO.dll) Version: 19.00.00
Syntaxpublic static PacketReader Create(
byte[] buffer,
int offset,
int length,
Endian? endian,
BinaryTextEncoding? textEncoding,
string? description
)
Parameters
- buffer Byte
- The buffer of data.
- offset Int32
- The offset of the first byte in the buffer.
- length Int32
- The number of bytes in packet.
- endian Endian
- The endian format of the data (or null if not known).
- textEncoding BinaryTextEncoding
- The encoding of strings in the packet (or null if not known).
- description String
- Printable packet/message/connection descrition.
Return Value
PacketReaderA new PacketReader.
See Also