C# Class UnitWrappers.System.IO.FileStreamBase

Inheritance: System.IO.Stream, IFileStream
Mostrar archivo Open project: OpenSharp/UnitWrappers

Public Methods

Method Description
Flush ( bool flushToDisk ) : void
GetAccessControl ( ) : IFileSecurity
Lock ( long position, long length ) : void
SetAccessControl ( IFileSecurity fileSecurity ) : void
Unlock ( long position, long length ) : void

Private Methods

Method Description
FileStreamBase ( ) : System.IO

Method Details

Flush() public abstract method

public abstract Flush ( bool flushToDisk ) : void
flushToDisk bool
return void

GetAccessControl() public abstract method

public abstract GetAccessControl ( ) : IFileSecurity
return IFileSecurity

Lock() public abstract method

public abstract Lock ( long position, long length ) : void
position long
length long
return void

SetAccessControl() public abstract method

public abstract SetAccessControl ( IFileSecurity fileSecurity ) : void
fileSecurity IFileSecurity
return void

Unlock() public abstract method

public abstract Unlock ( long position, long length ) : void
position long
length long
return void