UnityEngine.Networking.LocalClient.InvokeBytesOnClient C# (CSharp) Method

InvokeBytesOnClient() private method

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

Usage Example

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