Version: 5.4
public static Networking.NetworkEventType Receive (out int hostId, out int connectionId, out int channelId, byte[] buffer, int bufferSize, out int receivedSize, out byte error);

パラメーター

hostId イベントが起きた UDP ソケットの Id
connectionId 接続されたデバイス
channelId データイベントのチャネル Id
buffer ネットワークを通じて取得されたデータ
bufferSize バッファーサイズ
receivedSize 実際に受信した長さ
error 起こりうるエラー

戻り値

NetworkEventType Receive() で返されるイベントのタイプ

説明

ネットワークイベントをユーザーに通知します。

The API process received data returned in the connection. The data is returned in the buffer argument, with the number of bytes permitted set by the bufferSize argument. The exact number of bytes returned is set in receivedSize.

kConnectionEvent will notify about new connection established, kDisconnectEvent will report about disconnection happened, kDataEvent will report about new information delivered.

コード例は Connect を参照してください。