Delegate StreamingServer.ClientConnectedHandler
Represents the method that handles the event when a client has connected.
public delegate void StreamingServer.ClientConnectedHandler(Guid connectionId, ConnectedClient client)
Parameters
connectionIdGuidThe unique identifier of the connection.
clientConnectedClientThe connected client.
Constructors
ClientConnectedHandler(object, nint)
public ClientConnectedHandler(object @object, nint method)
Parameters
Methods
BeginInvoke(Guid, ConnectedClient, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(Guid connectionId, ConnectedClient client, AsyncCallback callback, object @object)
Parameters
connectionIdGuidclientConnectedClientcallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Invoke(Guid, ConnectedClient)
public virtual void Invoke(Guid connectionId, ConnectedClient client)
Parameters
connectionIdGuidclientConnectedClient