Skip to content

StreamExtensions.ReadInt16OrThrowAsync Method

Definition

Reads a Int16 from the stream asynchronously, throwing EndOfStreamException if the end of the stream has been reached.

public static ValueTask<Int16> ReadInt16OrThrowAsync(this Stream stream, Endian endian = Endian.MrKWatkins.BinaryPrimitives.Endian, CancellationToken cancellationToken = null);

Parameters

Name Type Description
stream Stream
endian Endian The endianness to use.
cancellationToken CancellationToken A cancellation token.

Returns

ValueTask<Int16>

The Int16 value read from the stream.