/// <summary>
 /// Initializes a new instance of the <see cref="JsonLoadSettings"/> class.
 /// </summary>
 public JsonLoadSettings()
 {
     _lineInfoHandling = LineInfoHandling.Load;
     _commentHandling  = CommentHandling.Ignore;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="JsonLoadSettings"/> class.
 /// </summary>
 public JsonLoadSettings()
 {
     _lineInfoHandling = LineInfoHandling.Load;
     _commentHandling  = CommentHandling.Ignore;
     _duplicatePropertyNameHandling = DuplicatePropertyNameHandling.Replace;
 }