Click or drag to resize

PacketReaderExtensions Class

IPacketReader extensions.
Inheritance Hierarchy
SystemObject
  Demo3D.IOPacketReaderExtensions

Namespace:  Demo3D.IO
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
public static class PacketReaderExtensions

The PacketReaderExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberGetString
Reads a string from the current position in the packet packet. The current position is advanced by the number of bytes read.
Public methodStatic memberReadDouble
Reads a 64bit double floating point number from the current position in the packet packet. The current position is advanced by 8 bytes.
Public methodStatic memberReadInt16
Reads a 16bit signed integer from the current position in the packet packet. The current position is advanced by 2 bytes.
Public methodStatic memberReadInt32
Reads a 32bit signed integer from the current position in the packet packet. The current position is advanced by 4 bytes.
Public methodStatic memberReadInt64
Reads a 64bit signed integer from the current position in the packet packet. The current position is advanced by 8 bytes.
Public methodStatic memberReadSingle
Reads a 32bit single floating point number from the current position in the packet packet. The current position is advanced by 4 bytes.
Public methodStatic memberReadString
Reads a string from the current position in the packet packet. The current position is advanced by the number of bytes read.
Public methodStatic memberReadUInt16
Reads a 16bit unsigned integer from the current position in the packet packet. The current position is advanced by 2 bytes.
Public methodStatic memberReadUInt32
Reads a 32bit unsigned integer from the current position in the packet packet. The current position is advanced by 4 bytes.
Public methodStatic memberReadUInt64
Reads a 64bit unsigned integer from the current position in the packet packet. The current position is advanced by 8 bytes.
Top
See Also