ErrorEventArgs
Provides data for the Error event.
using System;
namespace Newtonsoft.Json.Serialization
{
public class ErrorEventArgs : EventArgs
{
public object CurrentObject { get; set; }
public ErrorContext ErrorContext { get; set; }
public ErrorEventArgs(object currentObject, ErrorContext errorContext)
{
CurrentObject = currentObject;
ErrorContext = errorContext;
}
}
}