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

IJsonLineInfo

public interface IJsonLineInfo
Provides an interface to enable a class to return line and position information.
namespace Newtonsoft.Json { public interface IJsonLineInfo { int LineNumber { get; } int LinePosition { get; } bool HasLineInfo(); } }