<PackageReference Include="Newtonsoft.Json" Version="6.0.7" />

ValidationEventArgs

Returns detailed information related to the ValidationEventHandler.
using Newtonsoft.Json.Utilities; using System; namespace Newtonsoft.Json.Schema { public class ValidationEventArgs : EventArgs { private readonly JsonSchemaException _ex; public JsonSchemaException Exception => _ex; public string Path => _ex.Path; public string Message => _ex.Message; internal ValidationEventArgs(JsonSchemaException ex) { ValidationUtils.ArgumentNotNull(ex, "ex"); _ex = ex; } } }