我需要做一些json模式验证并使用NJsonSchema,因为我无法获得Json.Net Schema的许可证。有没有办法获取ValidationErrors的LineNumber信息?
看起来唯一可用的属性是
//
// Summary:
// Gets the error kind.
public ValidationErrorKind Kind { get; }
//
// Summary:
// Gets the property path.
public string Path { get; }
//
// Summary:
// Gets the property name.
public string Property { get; }