SendWrapper() private method

private SendWrapper ( int hostId, int connectionId, int channelId, byte buffer, int size, byte &error ) : bool
hostId int
connectionId int
channelId int
buffer byte
size int
error byte
return bool
コード例 #1
0
 public static bool Send(int hostId, int connectionId, int channelId, byte[] buffer, int size, out byte error)
 {
     if (buffer == null)
     {
         throw new NullReferenceException("send buffer is not initialized");
     }
     return(NetworkTransport.SendWrapper(hostId, connectionId, channelId, buffer, size, out error));
 }