Delegate StreamingServer.ErrorHandler
Represents the method that handles the event when an error occurs.
public delegate void StreamingServer.ErrorHandler(Guid connectionId, string errorDescription)
Parameters
connectionIdGuidThe unique identifier of the connection.
errorDescriptionstringA description of the error.
Constructors
ErrorHandler(object, nint)
public ErrorHandler(object @object, nint method)
Parameters
Methods
BeginInvoke(Guid, string, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(Guid connectionId, string errorDescription, AsyncCallback callback, object @object)
Parameters
connectionIdGuiderrorDescriptionstringcallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Invoke(Guid, string)
public virtual void Invoke(Guid connectionId, string errorDescription)