Table of Contents

Class MvcFaultDescriptorOptions

Namespace
Cuemon.AspNetCore.Mvc.Filters.Diagnostics
Assembly
Cuemon.AspNetCore.Mvc.dll

Specifies options that is related to FaultDescriptorFilter operations.

public class MvcFaultDescriptorOptions : FaultDescriptorOptions, IAsyncOptions, IExceptionDescriptorOptions, IValidatableParameterObject, IParameterObject
Inheritance
MvcFaultDescriptorOptions
Implements
Inherited Members

Constructors

MvcFaultDescriptorOptions()

Initializes a new instance of the MvcFaultDescriptorOptions class.

public MvcFaultDescriptorOptions()

Remarks

The following table shows the initial property values for an instance of MvcFaultDescriptorOptions.

PropertyInitial Value
MarkExceptionHandledfalse

Properties

MarkExceptionHandled

Gets or sets a value indicating whether to mark ASP.NET Core MVC Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.ExceptionHandled to true.

public bool MarkExceptionHandled { get; set; }

Property Value

Boolean

true if Microsoft.AspNetCore.Mvc.Filters.ExceptionContext.ExceptionHandled should be set; otherwise, false.

See Also