Table of Contents

Delegate StreamingServer.ClientConnectedHandler

Namespace
VAST.Network
Assembly
VAST.Network.dll

Represents the method that handles the event when a client has connected.

public delegate void StreamingServer.ClientConnectedHandler(Guid connectionId, ConnectedClient client)

Parameters

connectionId Guid

The unique identifier of the connection.

client ConnectedClient

The connected client.

Constructors

ClientConnectedHandler(object, nint)

public ClientConnectedHandler(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(Guid, ConnectedClient, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(Guid connectionId, ConnectedClient client, AsyncCallback callback, object @object)

Parameters

connectionId Guid
client ConnectedClient
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(Guid, ConnectedClient)

public virtual void Invoke(Guid connectionId, ConnectedClient client)

Parameters

connectionId Guid
client ConnectedClient