Method Send
Send(string)
The method Sends data across the data channel to the remote peer.
Declaration
public void Send(string msg)
Parameters
Type |
Name |
Description |
string |
msg |
|
Exceptions
See Also
Send(byte[])
The method Sends data across the data channel to the remote peer.
Declaration
public void Send(byte[] msg)
Parameters
Type |
Name |
Description |
byte[] |
msg |
|
Exceptions
See Also
Send<T>(NativeArray<T>)
Declaration
public void Send<T>(NativeArray<T> msg) where T : struct
Parameters
Type Parameters
Send<T>(NativeSlice<T>)
Declaration
public void Send<T>(NativeSlice<T> msg) where T : struct
Parameters
Type Parameters
Send(void*, int)
Declaration
public void Send(void* msgPtr, int length)
Parameters
Type |
Name |
Description |
void* |
msgPtr |
|
int |
length |
|
Send(IntPtr, int)
Declaration
public void Send(IntPtr msgPtr, int length)
Parameters
Type |
Name |
Description |
IntPtr |
msgPtr |
|
int |
length |
|