| Extension Member | Description |
member AsyncRead : int -> Async<byte []> |
Return an asynchronous computation that will read the given number of bytes from the stream
|
member AsyncRead : buffer:byte [] * ?offset:int * ?count:int -> Async<int> |
Return an asynchronous computation that will read from the stream into the given buffer.
|
member AsyncSleep : millisecondsDueTime:int -> Async<unit> |
Return an asynchronous computation that will sleep for the given time. This is scheduled
using a System.Threading.Timer object, meaning that the operation will not block any threads
for the duration of the wait.
|
member AsyncWaitOne : ?millisecondsTimeout:int -> Async<bool> |
Return an asynchronous computation that will wait on the given WaitHandle. This is scheduled
as a wait-item in the .NET thread pool, meaning that the operation will not block any threads
for the duration of the wait.
|
member
AsyncWrite : buffer:byte [] * ?offset:int * ?count:int -> Async<unit> |
Return an asynchronous computation that will write the given bytes to the stream
|