7 references to TrySkipPartial
System.Text.Json (7)
System\Text\Json\JsonHelpers.cs (2)
182
bool success = reader.
TrySkipPartial
(reader.CurrentDepth);
189
return reader.
TrySkipPartial
(reader.CurrentDepth);
System\Text\Json\Reader\Utf8JsonReader.cs (1)
380
bool success =
TrySkipPartial
(targetDepth: CurrentDepth);
System\Text\Json\Serialization\Converters\Collection\JsonCollectionConverter.cs (1)
270
bool result = reader.
TrySkipPartial
(reader.CurrentDepth - 1); // skip to the end of the object
System\Text\Json\Serialization\Converters\Object\ObjectDefaultConverter.cs (1)
204
if (!reader.
TrySkipPartial
(targetDepth: state.Current.OriginalDepth + 1))
System\Text\Json\Serialization\Converters\Object\ObjectWithParameterizedConstructorConverter.cs (2)
468
if (!reader.
TrySkipPartial
(targetDepth: state.Current.OriginalDepth + 1))
504
if (!reader.
TrySkipPartial
(targetDepth: state.Current.OriginalDepth + 1))