Mirror::NetworkReaderExtensions
Public Functions
Public Functions Documentation
function ReadByte
static byte ReadByte(
this NetworkReader reader
)
function ReadSByte
static sbyte ReadSByte(
this NetworkReader reader
)
function ReadChar
static char ReadChar(
this NetworkReader reader
)
function ReadBoolean
static bool ReadBoolean(
this NetworkReader reader
)
function ReadInt16
static short ReadInt16(
this NetworkReader reader
)
function ReadUInt16
static inline ushort ReadUInt16(
this NetworkReader reader
)
function ReadInt32
static int ReadInt32(
this NetworkReader reader
)
function ReadUInt32
static inline uint ReadUInt32(
this NetworkReader reader
)
function ReadInt64
static long ReadInt64(
this NetworkReader reader
)
function ReadUInt64
static inline ulong ReadUInt64(
this NetworkReader reader
)
function ReadSingle
static inline float ReadSingle(
this NetworkReader reader
)
function ReadDouble
static inline double ReadDouble(
this NetworkReader reader
)
function ReadDecimal
static inline decimal ReadDecimal(
this NetworkReader reader
)
function ReadString
static inline string ReadString(
this NetworkReader reader
)
function ReadBytesAndSize
static inline byte [] ReadBytesAndSize(
this NetworkReader reader
)
function ReadBytesAndSizeSegment
static inline ArraySegment< byte > ReadBytesAndSizeSegment(
this NetworkReader reader
)
function ReadPackedInt32
static inline int ReadPackedInt32(
this NetworkReader reader
)
function ReadPackedUInt32
static uint ReadPackedUInt32(
this NetworkReader reader
)
function ReadPackedInt64
static inline long ReadPackedInt64(
this NetworkReader reader
)
function ReadPackedUInt64
static inline ulong ReadPackedUInt64(
this NetworkReader reader
)
function ReadVector2
static Vector2 ReadVector2(
this NetworkReader reader
)
function ReadVector3
static Vector3 ReadVector3(
this NetworkReader reader
)
function ReadVector4
static Vector4 ReadVector4(
this NetworkReader reader
)
function ReadVector2Int
static Vector2Int ReadVector2Int(
this NetworkReader reader
)
function ReadVector3Int
static Vector3Int ReadVector3Int(
this NetworkReader reader
)
function ReadColor
static Color ReadColor(
this NetworkReader reader
)
function ReadColor32
static Color32 ReadColor32(
this NetworkReader reader
)
function ReadQuaternion
static Quaternion ReadQuaternion(
this NetworkReader reader
)
function ReadRect
static Rect ReadRect(
this NetworkReader reader
)
function ReadPlane
static Plane ReadPlane(
this NetworkReader reader
)
function ReadRay
static Ray ReadRay(
this NetworkReader reader
)
function ReadMatrix4x4
static inline Matrix4x4 ReadMatrix4x4(
this NetworkReader reader
)
function ReadBytes
static inline byte [] ReadBytes(
this NetworkReader reader,
int count
)
function ReadGuid
static Guid ReadGuid(
this NetworkReader reader
)
function ReadTransform
static inline Transform ReadTransform(
this NetworkReader reader
)
function ReadGameObject
static inline GameObject ReadGameObject(
this NetworkReader reader
)
function ReadNetworkIdentity
static inline NetworkIdentity ReadNetworkIdentity(
this NetworkReader reader
)
function ReadList< T >
static inline List< T > ReadList< T >(
this NetworkReader reader
)
function ReadArray< T >
static inline T [] ReadArray< T >(
this NetworkReader reader
)
function ReadUri
static inline Uri ReadUri(
this NetworkReader reader
)
Updated on 22 January 2021 at 08:52:35 UTC