Newtonsoft.Json.JsonSerializer.OnError C# (CSharp) Method

OnError() private method

private OnError ( ErrorEventArgs e ) : void
e Newtonsoft.Json.Serialization.ErrorEventArgs
return void
    internal void OnError(ErrorEventArgs e)
    {
      EventHandler<ErrorEventArgs> error = Error;
      if (error != null)
        error(this, e);
    }
  }