我需要做一些 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; }