Table of Contents

Delegate StreamingServer.ErrorHandler

Namespace
VAST.Network
Assembly
VAST.Network.dll

Represents the method that handles the event when an error occurs.

public delegate void StreamingServer.ErrorHandler(Guid connectionId, string errorDescription)

Parameters

connectionId Guid

The unique identifier of the connection.

errorDescription string

A description of the error.

Constructors

ErrorHandler(object, nint)

public ErrorHandler(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(Guid, string, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(Guid connectionId, string errorDescription, AsyncCallback callback, object @object)

Parameters

connectionId Guid
errorDescription string
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(Guid, string)

public virtual void Invoke(Guid connectionId, string errorDescription)

Parameters

connectionId Guid
errorDescription string