PipeReader.ReadAtLeastAsyncCore(Int32, CancellationToken) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Asynchronously reads a sequence of bytes from the current PipeReader.
protected:
virtual System::Threading::Tasks::ValueTask<System::IO::Pipelines::ReadResult> ReadAtLeastAsyncCore(int minimumSize, System::Threading::CancellationToken cancellationToken);
protected virtual System.Threading.Tasks.ValueTask<System.IO.Pipelines.ReadResult> ReadAtLeastAsyncCore(int minimumSize, System.Threading.CancellationToken cancellationToken);
abstract member ReadAtLeastAsyncCore : int * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<System.IO.Pipelines.ReadResult>
override this.ReadAtLeastAsyncCore : int * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<System.IO.Pipelines.ReadResult>
Protected Overridable Function ReadAtLeastAsyncCore (minimumSize As Integer, cancellationToken As CancellationToken) As ValueTask(Of ReadResult)
- minimumSize
- Int32
The minimum length that needs to be buffered in order for the call to return.
- cancellationToken
- CancellationToken
The token to monitor for cancellation requests. The default value is default
.
A ValueTask<TResult> representing the asynchronous read operation.
The cancellation token was canceled. This exception is stored into the returned task.
The call returns if the PipeReader has read the minimumSize
specified, or is cancelled or completed.
Product | Versions |
---|---|
.NET | 8 (package-provided), 9 (package-provided), 9, 10 (package-provided), 10 |
.NET Standard | 2.0 (package-provided) |
.NET feedback
.NET is an open source project. Select a link to provide feedback: