Table of Contents

Class CallbackExceptionEventArgs

Namespace
RabbitMQ.Client.Events
Assembly
Apigen.dll

Describes an exception that was thrown during the library's invocation of an application-supplied callback handler.

public class CallbackExceptionEventArgs : BaseExceptionEventArgs
Inheritance
CallbackExceptionEventArgs
Inherited Members

Remarks

When an exception is thrown from a callback registered with part of the RabbitMQ .NET client library, it is caught, packaged into a CallbackExceptionEventArgs, and passed through the appropriate IModel's or IConnection's CallbackException event handlers. If an exception is thrown in a CallbackException handler, it is silently swallowed, as CallbackException is the last chance to handle these kinds of exception.

Code constructing CallbackExceptionEventArgs instances will usually place helpful information about the context of the call in the IDictionary available through the Detail property.

Constructors

CallbackExceptionEventArgs(Exception)

public CallbackExceptionEventArgs(Exception e)

Parameters

e Exception

Methods

Build(Exception, IDictionary<string, object>)

public static CallbackExceptionEventArgs Build(Exception e, IDictionary<string, object> details)

Parameters

e Exception
details IDictionary<string, object>

Returns

CallbackExceptionEventArgs

Build(Exception, string)

public static CallbackExceptionEventArgs Build(Exception e, string context)

Parameters

e Exception
context string

Returns

CallbackExceptionEventArgs