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

Method Write

Source/Engine/Networking/NetworkStream.cs:449–452  ·  view source on GitHub ↗

Writes the object data to the stream. Object has to be allocated. The serializable object.

(INetworkSerializable obj)

Source from the content-addressed store, hash-verified

447 /// </summary>
448 /// <param name="obj">The serializable object.</param>
449 public void Write(INetworkSerializable obj)
450 {
451 obj.Serialize(this);
452 }
453
454 /// <summary>
455 /// Reads the <see cref="INetworkSerializable"/> object data from the stream. Object has to be allocated.

Callers

nothing calls this directly

Calls 1

SerializeMethod · 0.45

Tested by

no test coverage detected