5 writes to Path
System.Text.Json (5)
System\Text\Json\JsonException.cs (3)
35Path = path; 53Path = path; 96Path = info.GetString("Path");
System\Text\Json\ThrowHelper.Serialization.cs (2)
474ex.Path = path; 506ex.Path = path;
7 references to Path
Microsoft.AspNetCore.Mvc.Core (1)
Formatters\SystemTextJsonInputFormatter.cs (1)
70var path = jsonException.Path ?? string.Empty;
System.Text.Json (6)
System\Text\Json\JsonException.cs (1)
119info.AddValue("Path", Path, typeof(string));
System\Text\Json\Serialization\JsonConverterOfT.ReadCore.cs (1)
74case JsonException jsonEx when jsonEx.Path is null:
System\Text\Json\Serialization\JsonConverterOfT.WriteCore.cs (1)
33case JsonException { Path: null } jsonException:
System\Text\Json\ThrowHelper.Serialization.cs (3)
432Debug.Assert(ex.Path == null); 465Debug.Assert(ex.Path is null); // do not overwrite existing path information 503Debug.Assert(ex.Path is null); // do not overwrite existing path information