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