Table of Contents

Delegate StreamingServer.AuthorizeHandler

Namespace
VAST.Network
Assembly
VAST.Network.dll

Represents the method that handles the authorization event for a connection.

public delegate void StreamingServer.AuthorizeHandler(Guid connectionId, ConnectionInfo connectionInfo)

Parameters

connectionId Guid

The unique identifier of the connection.

connectionInfo ConnectionInfo

The connection information to authorize.

Constructors

AuthorizeHandler(object, nint)

public AuthorizeHandler(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(Guid, ConnectionInfo, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(Guid connectionId, ConnectionInfo connectionInfo, AsyncCallback callback, object @object)

Parameters

connectionId Guid
connectionInfo ConnectionInfo
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(Guid, ConnectionInfo)

public virtual void Invoke(Guid connectionId, ConnectionInfo connectionInfo)

Parameters

connectionId Guid
connectionInfo ConnectionInfo