Table of Contents

Class BaseExceptionEventArgs

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

Constructors

BaseExceptionEventArgs(Exception)

Wrap an exception thrown by a callback.

public BaseExceptionEventArgs(Exception exception)

Parameters

exception Exception

Properties

Detail

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

public IDictionary<string, object> Detail { get; }

Property Value

IDictionary<string, object>

Exception

Access the wrapped exception.

public Exception Exception { get; }

Property Value

Exception

Methods

UpdateDetails(IDictionary<string, object>)

public IDictionary<string, object> UpdateDetails(IDictionary<string, object> other)

Parameters

other IDictionary<string, object>

Returns

IDictionary<string, object>