class in UnityEngine.Networking.PlayerConnection
Implements interfaces:IEditorPlayerConnection
Switch to ManualUsed for handling the network connection from the Player to the Editor.
Sets up events for connecting to and sending data to the Editor.
This can only be used in a class that inherits from MonoBehaviour, Object or ScriptableObject.
instance | Returns a singleton instance of a PlayerConnection. |
isConnected | Returns true when the Editor is connected to the Player. |
BlockUntilRecvMsg | Blocks the calling thread until either a message with the specified messageId is received or the specified time-out elapses. |
DisconnectAll | This disconnects all of the active connections. |
Register | Registers a listener for a specific message ID, with an Action to be executed whenever that message is received by the Editor. This ID must be the same as for messages sent from EditorConnection.Send(). |
RegisterConnection | Registers a callback that is invoked when the Editor connects to the Player. |
RegisterDisconnection | Registers a callback to be called when Editor disconnects. |
Send | Sends data to the Editor. |
TrySend | Attempt to sends data to the Editor. |
Unregister | Deregisters a message listener. |
UnregisterConnection | Unregisters the connection callback. |
UnregisterDisconnection | Unregisters the disconnection callback. |