MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / ReadUInt64

Method ReadUInt64

Source/Engine/Networking/NetworkMessage.cs:151–156  ·  view source on GitHub ↗

Reads and returns data of type from the message.

()

Source from the content-addressed store, hash-verified

149 /// Reads and returns data of type <see cref="UInt64"/> from the message.
150 /// </summary>
151 public ulong ReadUInt64()
152 {
153 ulong value = 0;
154 ReadBytes((byte*)&value, sizeof(ulong));
155 return value;
156 }
157
158 /// <summary>
159 /// Writes data of type <see cref="UInt32"/> into the message.

Callers

nothing calls this directly

Calls 1

ReadBytesFunction · 0.85

Tested by

no test coverage detected