Waits for the pending asynchronous read to complete.
Namespace: HidSharp
Assembly: HidSharp (in HidSharp.dll) Version: 2.0.0
Syntax
Parameters
- asyncResult
- Type: SystemIAsyncResult
The reference to the pending asynchronous request to finish.
Return Value
Type: Int32The 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
Exception | Condition |
---|---|
ArgumentNullException | asyncResult is null. |
ArgumentException | asyncResult did not originate from a BeginRead(Byte, Int32, Int32, AsyncCallback, Object) method on the current stream. |
IOException | The stream is closed or an internal error has occurred. |
See Also