Show / Hide Table of Contents

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

Extension Methods

AbpObjectExtensions.As<T>(Object)
AbpObjectExtensions.To<T>(Object)
AbpObjectExtensions.IsIn<T>(T, T[])
AbpObjectExtensions.If<T>(T, Boolean, Func<T, T>)
AbpObjectExtensions.If<T>(T, Boolean, Action<T>)
LockExtensions.Locking(Object, Action)
LockExtensions.Locking<T>(T, Action<T>)
LockExtensions.Locking<TResult>(Object, Func<TResult>)
LockExtensions.Locking<T, TResult>(T, Func<T, TResult>)
Back to top Powered by Volosoft