DelegatingStreamEndRead Method |
Namespace:
MongoDB.Driver.GridFS
Assembly:
MongoDB.Driver.GridFS (in MongoDB.Driver.GridFS.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax public override int EndRead(
IAsyncResult asyncResult
)
Public Overrides Function EndRead (
asyncResult As IAsyncResult
) As Integer
abstract EndRead :
asyncResult : IAsyncResult -> int
override EndRead :
asyncResult : IAsyncResult -> int
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 See Also