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

Method ReadUInt32

Source/Engine/Networking/NetworkMessage.cs:169–174  ·  view source on GitHub ↗

Reads and returns data of type from the message.

()

Source from the content-addressed store, hash-verified

167 /// Reads and returns data of type <see cref="UInt32"/> from the message.
168 /// </summary>
169 public uint ReadUInt32()
170 {
171 uint value = 0;
172 ReadBytes((byte*)&value, sizeof(uint));
173 return value;
174 }
175
176 /// <summary>
177 /// Writes data of type <see cref="UInt16"/> into the message.

Callers

nothing calls this directly

Calls 1

ReadBytesFunction · 0.85

Tested by

no test coverage detected