16 references to IsFinalBlock
Microsoft.DotNet.TemplateLocator (1)
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadManifestReader.SystemTextJson.cs (1)
69
if (reader.
IsFinalBlock
)
Microsoft.NET.Build.Tasks (1)
src\sdk\src\Resolvers\Microsoft.NET.Sdk.WorkloadManifestReader\WorkloadManifestReader.SystemTextJson.cs (1)
69
if (reader.
IsFinalBlock
)
Microsoft.NET.Sdk.WorkloadManifestReader (1)
WorkloadManifestReader.SystemTextJson.cs (1)
69
if (reader.
IsFinalBlock
)
NuGet.ProjectModel (3)
src\nuget-client\build\Shared\Utf8JsonStreamReader.cs (3)
81
internal bool IsFinalBlock => _reader.
IsFinalBlock
;
102
while (!(wasRead = _reader.Read()) && !_reader.
IsFinalBlock
)
114
while (!(wasSkipped = _reader.TrySkip()) && !_reader.
IsFinalBlock
)
System.Text.Json (10)
System\Text\Json\JsonHelpers.cs (3)
41
bool readAhead = requiresReadAhead && !reader.
IsFinalBlock
;
58
isAtEndOfStream = reader.
IsFinalBlock
;
65
if (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)
36
return reader.
IsFinalBlock
;
47
if (!reader.Read() && !reader.
IsFinalBlock
)
System\Text\Json\Serialization\JsonSerializer.Read.HandleMetadata.cs (2)
36
if (!reader.
IsFinalBlock
)
80
if (allowOutOfOrderMetadata && !reader.
IsFinalBlock
)