namespace Newtonsoft.Json.Linq
{
///
/// Specifies how JSON comments are handled when loading JSON.
///
public enum CommentHandling
{
///
/// Ignore comments.
///
Ignore = 0,
///
/// Load comments as a with type .
///
Load = 1
}
///
/// Specifies how line information is handled when loading JSON.
///
public enum LineInfoHandling
{
///
/// Ignore line information.
///
Ignore = 0,
///
/// Load line information.
///
Load = 1
}
}