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