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

Method WriteInt32

Source/Engine/Networking/NetworkStream.cs:74–77  ·  view source on GitHub ↗

Writes data of type into the message.

(int value)

Source from the content-addressed store, hash-verified

72 /// Writes data of type <see cref="Int32"/> into the message.
73 /// </summary>
74 public void WriteInt32(int value)
75 {
76 WriteBytes((byte*)&value, sizeof(int));
77 }
78
79 /// <summary>
80 /// Reads and returns data of type <see cref="Int32"/> from the message.

Callers 15

saveStateMethod · 0.45
LoadTimelineMethod · 0.45
SaveMethod · 0.45
CreateMethod · 0.45
CreateMethod · 0.45
SaveHeaderMethod · 0.45
SaveHeaderMethod · 0.45
LoadTimelineMethod · 0.45
SaveMethod · 0.45
SaveHeaderMethod · 0.45
SaveMethod · 0.45
loadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected