13 references to IsFinalBlock
Microsoft.DotNet.MSBuildSdkResolver (1)
WorkloadManifestReader.SystemTextJson.cs (1)
69if (reader.IsFinalBlock)
Microsoft.DotNet.TemplateLocator (1)
WorkloadManifestReader.SystemTextJson.cs (1)
69if (reader.IsFinalBlock)
Microsoft.NET.Build.Tasks (1)
WorkloadManifestReader.SystemTextJson.cs (1)
69if (reader.IsFinalBlock)
Microsoft.NET.Sdk.WorkloadManifestReader (1)
WorkloadManifestReader.SystemTextJson.cs (1)
69if (reader.IsFinalBlock)
System.Text.Json (9)
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 (1)
34if (allowOutOfOrderMetadata && !reader.IsFinalBlock)