IFileHandle Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A file handle.
public interface IFileHandle : IDisposable
type IFileHandle = interface
interface IDisposable
Public Interface IFileHandle
Implements IDisposable
- Derived
- Implements
Properties
CanRead |
Returns whether OpenReadStream is expected to succeed. |
CanWrite |
Returns whether CreateWriteStream is expected to succeed. Typically, once CreateWriteStream has been called once, this will forever more return false. |
Methods
CreateWriteStream() |
Create a writable stream for this file handle. |
OpenReadStream() |
Open a readable stream for this file handle. |