EndRead Method

HidSharp

HidStream EndRead Method HIDSharp
Waits for the pending asynchronous read to complete.

Namespace: HidSharp
Assembly: HidSharp (in HidSharp.dll) Version: 1.5.0.0 (1.5.0.0)

Syntax

public override int EndRead(
	IAsyncResult asyncResult
)
public override int EndRead(
	IAsyncResult asyncResult
)
Public Overrides Function EndRead ( _
	asyncResult As IAsyncResult _
) As Integer
Public Overrides Function EndRead ( _
	asyncResult As IAsyncResult _
) As Integer
public:
virtual int EndRead(
	IAsyncResult^ asyncResult
) override
public:
virtual int EndRead(
	IAsyncResult^ asyncResult
) override
abstract EndRead : 
        asyncResult : IAsyncResult -> int 
override EndRead : 
        asyncResult : IAsyncResult -> int 
abstract EndRead : 
        asyncResult : IAsyncResult -> int 
override EndRead : 
        asyncResult : IAsyncResult -> int 

Parameters

asyncResult
Type: OnlineSystem IAsyncResult
The reference to the pending asynchronous request to finish.

Return Value

The number of bytes read from the stream, between zero (0) and the number of bytes you requested. Streams return zero (0) only at the end of the stream, otherwise, they should block until at least one byte is available.
Exceptions

ExceptionCondition
OnlineSystem ArgumentNullExceptionasyncResult is null.
OnlineSystem ArgumentExceptionasyncResult did not originate from a OnlineBeginRead( Byte , Int32, Int32, AsyncCallback, Object) method on the current stream.
OnlineSystem.IO IOExceptionThe stream is closed or an internal error has occurred.
See Also