Class ExceptionNotificationContext
Inheritance
System.Object
ExceptionNotificationContext
Namespace: Volo.Abp.ExceptionHandling
Assembly: Volo.Abp.Core.dll
Syntax
public class ExceptionNotificationContext : object
Constructors
ExceptionNotificationContext(Exception, Nullable<LogLevel>, Boolean)
Declaration
public ExceptionNotificationContext(Exception exception, LogLevel? logLevel = null, bool handled = true)
Parameters
Type | Name | Description |
---|---|---|
Exception | exception | |
System.Nullable<LogLevel> | logLevel | |
System.Boolean | handled |
Properties
Exception
The exception object.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
Exception |
Handled
True, if it is handled.
Declaration
public bool Handled { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
LogLevel
Declaration
public LogLevel LogLevel { get; }
Property Value
Type | Description |
---|---|
LogLevel |