| Extension Member | Description |
member AsyncAppendText : path:string -> Async<StreamWriter> |
Return an asynchronous computation that will open the file via a fresh blocking I/O thread.
|
member
AsyncOpen : path:string * mode:FileMode * ?access:FileAccess *
?share:FileShare * ?bufferSize:int * ?options:FileOptions ->
Async<FileStream> |
Return an asynchronous computation that will open the file via a fresh blocking I/O thread.
Pass 'options=FileOptions.Asynchronous' to enable further asynchronous read/write operations
on the FileStream.
|
member AsyncOpenRead : path:string -> Async<FileStream> |
Return an asynchronous computation that will open the file via a fresh blocking I/O thread.
|
member AsyncOpenText : path:string -> Async<StreamReader> |
Return an asynchronous computation that will open the file via a fresh blocking I/O thread.
|
member AsyncOpenWrite : path:string -> Async<FileStream> |
Return an asynchronous computation that will open the file via a fresh blocking I/O thread.
|