This version of Unity is unsupported.
Method group is Obsolete

NetworkWriter.FinishMessage

Obsolete The high level API classes are deprecated and will be removed in the future.

Declaration

public void FinishMessage();

Description

This fills out the size header of a message begun with StartMessage(), so that it can be send using Send() functions.

using UnityEngine;
using UnityEngine.Networking;

public class ExampleScript : MonoBehaviour { void Start() { short myMsgType = 444;

NetworkWriter writer = new NetworkWriter(); writer.StartMessage(myMsgType); writer.Write("test data"); writer.FinishMessage(); } }

See NetworkWriting for another code example.