Photon Server API Documentation
v5.0RC1
The interface for a binary writer. More...
Public Member Functions | |
| void | WriteBoolean (bool value) |
| Writes a boolean. More... | |
| void | WriteByte (byte value) |
| Writes a byte. More... | |
| void | WriteBytes (byte[] value) |
| Writes bytes. More... | |
| void | WriteChar (char value) |
| Writes a char. More... | |
| void | WriteDouble (double value) |
| write double. More... | |
| void | WriteSingle (float value) |
| Writes a 32-bit floating point value. More... | |
| void | WriteInt16 (short value) |
| Writes a short. More... | |
| void | WriteInt32 (int value) |
| Writes an integer. More... | |
| void | WriteInt64 (long value) |
| Writes a long. More... | |
| void | WriteUTF (string value) |
| Writes an utf8 encoded string. More... | |
Properties | |
| Stream | Stream [get] |
| Gets the underlying stream. More... | |
The interface for a binary writer.
| void ExitGames.IO.IBinaryWriter.WriteBoolean | ( | bool | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteByte | ( | byte | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteBytes | ( | byte[] | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteChar | ( | char | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteDouble | ( | double | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteInt16 | ( | short | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteInt32 | ( | int | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteInt64 | ( | long | value | ) |
| void ExitGames.IO.IBinaryWriter.WriteSingle | ( | float | value | ) |
Writes a 32-bit floating point value.
| value | The value. |
Implemented in ExitGames.IO.BigEndianBinaryWriter.
| void ExitGames.IO.IBinaryWriter.WriteUTF | ( | string | value | ) |
Writes an utf8 encoded string.
| value | The value. |
Implemented in ExitGames.IO.BigEndianBinaryWriter.
|
get |
Gets the underlying stream.