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();
}
}