UnityEngine.Networking.LocalClient.InvokeBytesOnClient C# (CSharp) Méthode

InvokeBytesOnClient() private méthode

private InvokeBytesOnClient ( byte buffer, int channelId ) : void
buffer byte
channelId int
Résultat void
        internal void InvokeBytesOnClient(byte[] buffer, int channelId)
        {
            this.PostInternalMessage(buffer, channelId);
        }

Usage Example

Exemple #1
0
 protected override bool SendBytes(byte[] bytes, int channelId)
 {
     m_LocalClient.InvokeBytesOnClient(bytes, channelId);
     return(true);
 }