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

Method ReadByte

Source/Engine/Networking/NetworkStream.cs:190–195  ·  view source on GitHub ↗

Reads and returns data of type from the message.

()

Source from the content-addressed store, hash-verified

188 /// Reads and returns data of type <see cref="Byte"/> from the message.
189 /// </summary>
190 public byte ReadByte()
191 {
192 byte value = 0;
193 ReadBytes(&value, sizeof(byte));
194 return value;
195 }
196
197 /// <summary>
198 /// Writes data of type <see cref="Single"/> into the message.

Callers 15

loadMethod · 0.45
GenerateMethod · 0.45
CreateMethod · 0.45
ReadVertexLayoutMethod · 0.45
LoadMethod · 0.45
DownloadDataCPUMethod · 0.45
ReadColor32Method · 0.45
ReadVariantScriptTypeMethod · 0.45
ReadVariantTypeMethod · 0.45
ReadVariantMethod · 0.45
ProcessGroupFunctionMethod · 0.45
loadMethod · 0.45

Calls 1

ReadBytesFunction · 0.85

Tested by

no test coverage detected