2 implementations of ReadAsync
System.Text.Json (2)
System\Text\Json\Serialization\PipeReadBufferState.cs (1)
51public async ValueTask<PipeReadBufferState> ReadAsync(PipeReader utf8Json, CancellationToken cancellationToken, bool fillBuffer = true)
System\Text\Json\Serialization\StreamReadBufferState.cs (1)
61public readonly async ValueTask<StreamReadBufferState> ReadAsync(Stream stream,
1 reference to ReadAsync
System.Text.Json (1)
System\Text\Json\Serialization\Metadata\JsonTypeInfoOfT.ReadHelper.cs (1)
39bufferState = await bufferState.ReadAsync(utf8Json, cancellationToken).ConfigureAwait(false);