IFileHandle Interface

Definition

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.

Applies to