Table of Contents

Class BaseExceptionEventArgs

Namespace
RabbitMQ.Client.Events
Assembly
RabbitMQ.Client.dll
public abstract class BaseExceptionEventArgs : AsyncEventArgs
Inheritance
BaseExceptionEventArgs
Derived
Inherited Members

Constructors

BaseExceptionEventArgs(IDictionary<string, object>, Exception, CancellationToken)

Wrap an exception thrown by a callback.

protected BaseExceptionEventArgs(IDictionary<string, object> detail, Exception exception, CancellationToken cancellationToken = default)

Parameters

detail IDictionary<string, object>
exception Exception
cancellationToken CancellationToken

Fields

Detail

Access helpful information about the context in which the wrapped exception was thrown.

public readonly IDictionary<string, object> Detail

Field Value

IDictionary<string, object>

Exception

Access the wrapped exception.

public readonly Exception Exception

Field Value

Exception