Table of Contents

Class ExceptionConverter

Namespace
Cuemon.Extensions.Text.Json.Converters
Assembly
Cuemon.Extensions.Text.Json.dll

Provides an Exception converter that can be configured like the Newtonsoft.JSON equivalent.

public class ExceptionConverter : JsonConverter<Exception>
Inheritance
ExceptionConverter
Inherited Members
Extension Methods

Constructors

ExceptionConverter(Boolean, Boolean)

Initializes a new instance of the ExceptionConverter class.

public ExceptionConverter(bool includeStackTrace = false, bool includeData = false)

Parameters

includeStackTrace Boolean

A value that indicates if the stack of an exception is included in the converted result.

includeData Boolean

A value that indicates if the data of an exception is included in the converted result.

Properties

IncludeData

Gets a value indicating whether the data of an exception is included in the converted result.

public bool IncludeData { get; }

Property Value

Boolean

true if the data of an exception is included in the converted result; otherwise, false.

IncludeStackTrace

Gets a value indicating whether the stack of an exception is included in the converted result.

public bool IncludeStackTrace { get; }

Property Value

Boolean

true if the stack of an exception is included in the converted result; otherwise, false.

Methods

CanConvert(Type)

Determines whether this instance can convert the specified object type.

public override bool CanConvert(Type typeToConvert)

Parameters

typeToConvert Type

Type of the object.

Returns

Boolean

true if this instance can convert the specified object type; otherwise, false.

Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

Reads and converts the JSON to type Exception.

public override Exception Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)

Parameters

reader Utf8JsonReader

The Utf8JsonReader to read from.

typeToConvert Type

The Type being converted.

options JsonSerializerOptions

The JsonSerializerOptions being used.

Returns

Exception

The value that was converted.

Write(Utf8JsonWriter, Exception, JsonSerializerOptions)

Writes the value as JSON.

public override void Write(Utf8JsonWriter writer, Exception value, JsonSerializerOptions options)

Parameters

writer Utf8JsonWriter

The Utf8JsonWriter to write to.

value Exception

The value to convert.

options JsonSerializerOptions

The JsonSerializerOptions being used.

See Also