2 implementations of IsFinalBlock
System.Text.Json (2)
System\Text\Json\Serialization\PipeReadBufferState.cs (1)
28
public readonly bool
IsFinalBlock
=> _isFinalBlock;
System\Text\Json\Serialization\StreamReadBufferState.cs (1)
52
public readonly bool
IsFinalBlock
=> _isFinalBlock;
3 references to IsFinalBlock
System.Text.Json (3)
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.ReadHelper.cs (3)
148
bufferState.
IsFinalBlock
, jsonReaderState);
152
reader = new Utf8JsonReader(bufferState.Bytes, bufferState.
IsFinalBlock
, jsonReaderState);
160
Debug.Assert(!bufferState.
IsFinalBlock
|| reader.AllowMultipleValues || reader.BytesConsumed == bufferState.Bytes.Length,