ReadResult(ReadOnlySequence<Byte>, Boolean, Boolean) Constructor

Definition

Creates a new instance of ReadResult setting IsCanceled and IsCompleted flags.

public:
 ReadResult(System::Buffers::ReadOnlySequence<System::Byte> buffer, bool isCanceled, bool isCompleted);
public ReadResult (System.Buffers.ReadOnlySequence<byte> buffer, bool isCanceled, bool isCompleted);
new System.IO.Pipelines.ReadResult : System.Buffers.ReadOnlySequence<byte> * bool * bool -> System.IO.Pipelines.ReadResult
Public Sub New (buffer As ReadOnlySequence(Of Byte), isCanceled As Boolean, isCompleted As Boolean)

Parameters

buffer
ReadOnlySequence<Byte>

The read-only sequence containing the bytes of data that were read in the ReadAsync(CancellationToken) call.

isCanceled
Boolean

A flag that indicates if the ReadAsync(CancellationToken) operation that produced this ReadResult was canceled by CancelPendingRead().

isCompleted
Boolean

A flag that indicates whether the end of the data stream has been reached.

Applies to