Version: 2017.1

StringMessage

class in UnityEngine.Networking.NetworkSystem

/

Hereda de:Networking.MessageBase

Cambiar al Manual

Descripción

This is a utility class for simple network messages that contain only a string.

This example sends a message with the name of the scene.

using UnityEngine;
using UnityEngine.Networking;
using UnityEngine.Networking.NetworkSystem;

public class Test { void SendSceneName(string sceneName) { var msg = new StringMessage(sceneName); NetworkServer.SendToAll(MsgType.Scene, msg); } }

Variables

valueThe string that will be serialized.

Miembros heredados

Funciones Públicas

DeserializeThis method is used to populate a message object from a NetworkReader stream.
SerializeThe method is used to populate a NetworkWriter stream from a message object.