16 references to IsFinalBlock
Microsoft.DotNet.TemplateLocator (1)
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadManifestReader.SystemTextJson.cs (1)
69if (reader.IsFinalBlock)
Microsoft.NET.Build.Tasks (1)
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadManifestReader.SystemTextJson.cs (1)
69if (reader.IsFinalBlock)
Microsoft.NET.Sdk.WorkloadManifestReader (1)
WorkloadManifestReader.SystemTextJson.cs (1)
69if (reader.IsFinalBlock)
NuGet.ProjectModel (3)
src\nuget-client\build\Shared\Utf8JsonStreamReader.cs (3)
81internal bool IsFinalBlock => _reader.IsFinalBlock; 102while (!(wasRead = _reader.Read()) && !_reader.IsFinalBlock) 114while (!(wasSkipped = _reader.TrySkip()) && !_reader.IsFinalBlock)
System.Text.Json (10)
System\Text\Json\JsonHelpers.cs (3)
41bool readAhead = requiresReadAhead && !reader.IsFinalBlock; 58isAtEndOfStream = reader.IsFinalBlock; 65if (requiresReadAhead && !reader.IsFinalBlock)
System\Text\Json\Reader\Utf8JsonReader.cs (2)
262/// This assumes that the entire JSON payload is passed in (equivalent to <see cref="IsFinalBlock"/> = true) 296/// Thrown when the reader was given partial data with more data to follow (i.e. <see cref="IsFinalBlock"/> is false).
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (1)
112/// This assumes that the entire JSON payload is passed in (equivalent to <see cref="IsFinalBlock"/> = true)
System\Text\Json\Serialization\JsonConverterOfT.ReadCore.cs (2)
36return reader.IsFinalBlock; 47if (!reader.Read() && !reader.IsFinalBlock)
System\Text\Json\Serialization\JsonSerializer.Read.HandleMetadata.cs (2)
36if (!reader.IsFinalBlock) 80if (allowOutOfOrderMetadata && !reader.IsFinalBlock)