Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

NetworkConnection.TransportRecieve

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public function TransportRecieve(bytes: byte[], numBytes: int, channelId: int): void;
public void TransportRecieve(byte[] bytes, int numBytes, int channelId);

Parámetros

bytes The data recieved.
numBytes The size of the data recieved.
channelId The channel that the data was received on.

Descripción

This virtual function allows custom network connection classes to process data from the network before it is passed to the application.

The default implementation of this function calls HandleBytes() on the received data. Custom implmentations can also use HandleBytes(), but can pass modified versions of the data received or other data.

This example logs the data received to the console, then passes it to HandleBytes.

no example available in JavaScript
class DebugConnection : NetworkConnection
{
	public override void TransportRecieve(byte[] bytes, int numBytes, int channelId)
	{
    StringBuilder msg = new StringBuilder();
    for (int i = 0; i < numBytes; i++)
    {
      var s = String.Format("{0:X2}", bytes[i]);
      msg.Append(s);
			if (i > 50) break;
		}
		UnityEngine.Debug.LogError("TransportRecieve h:" + hostId + " con:" + connectionId + " bytes:" + numBytes + " " + msg);

HandleBytes(bytes, numBytes, channelId); } }

Other uses for this function could be data compression or data encryption.

Custom network connection classes are used by setting NetworkServer.NetworkConnectionClass and NetworkClient.NetworkConnectionClass.

no example available in JavaScript
public class SpaceManager : NetworkManager 
{

void Start() { NetworkServer.NetworkConnectionClass = typeof(DebugConnection); NetworkClient.NetworkConnectionClass = typeof(DebugConnection); } }