7 references to TrySkipPartial
System.Text.Json (7)
System\Text\Json\JsonHelpers.cs (2)
183bool success = reader.TrySkipPartial(reader.CurrentDepth); 190return 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)
484if (!reader.TrySkipPartial(targetDepth: state.Current.OriginalDepth + 1)) 520if (!reader.TrySkipPartial(targetDepth: state.Current.OriginalDepth + 1))