Class ErrorContext
- Namespace
- Newtonsoft.Json.Serialization
- Assembly
- Newtonsoft.Json.dll
Provides information surrounding an error.
public class ErrorContext
- Inheritance
-
ErrorContext
- Inherited Members
Properties
Error
Gets or sets the error.
public Exception Error { get; }
Property Value
- Exception
The error.
Handled
Gets or sets a value indicating whether this ErrorContext is handled.
public bool Handled { get; set; }
Property Value
- bool
true
if handled; otherwise,false
.
Member
Gets the member that caused the error.
public object Member { get; }
Property Value
- object
The member that caused the error.
OriginalObject
Gets the original object that caused the error.
public object OriginalObject { get; }
Property Value
- object
The original object that caused the error.