3 instantiations of PipeReadBufferState
System.Text.Json (3)
System\Text\Json\Serialization\JsonSerializer.Read.Pipe.cs (1)
333
PipeReadBufferState bufferState =
new
(utf8Json);
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.ReadHelper.cs (2)
67
PipeReadBufferState bufferState =
new
(utf8Json);
125
T? result = await DeserializeAsync<PipeReadBufferState, PipeReader>(utf8Json, bufferState: new
PipeReadBufferState
(utf8Json), cancellationToken).ConfigureAwait(false);
7 references to PipeReadBufferState
System.Text.Json (7)
System\Text\Json\Serialization\JsonSerializer.Read.Pipe.cs (2)
333
PipeReadBufferState
bufferState = new(utf8Json);
341
success = listTypeInfo.ContinueDeserialize<
PipeReadBufferState
, PipeReader>(
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.ReadHelper.cs (2)
67
PipeReadBufferState
bufferState = new(utf8Json);
125
T? result = await DeserializeAsync<
PipeReadBufferState
, PipeReader>(utf8Json, bufferState: new PipeReadBufferState(utf8Json), cancellationToken).ConfigureAwait(false);
System\Text\Json\Serialization\PipeReadBufferState.cs (3)
14
internal struct PipeReadBufferState : IReadBufferState<
PipeReadBufferState
, PipeReader>
51
public async ValueTask<
PipeReadBufferState
> ReadAsync(PipeReader utf8Json, CancellationToken cancellationToken, bool fillBuffer = true)
57
PipeReadBufferState
bufferState = this;