Table of Contents

Class SessionErrorHandlerEventArgs

Namespace
PushTechnology.ClientInterface.Client.Session
Assembly
Diffusion.Client.dll

The ErrorNotified event argument.

public sealed class SessionErrorHandlerEventArgs : EventArgs
Inheritance
SessionErrorHandlerEventArgs
Inherited Members

Examples

An instance of this class can be obtained by the ErrorNotified event.

var factory = Diffusion.Sessions.SessionErrorHandler(
    (sender, args) => {
        var handlerEventArgs = args;
    } );

Remarks

Added in 5.0.

Properties

Error

Gets the reported error.

public ISessionError Error { get; }

Property Value

ISessionError

The reported error.

Examples

The session error can be obtain by the ErrorNotified event.

var factory = Diffusion.Sessions.SessionErrorHandler(
    (sender, args) => {
        var error = args.Error;
    } );

Remarks

Added in 5.0.