C# Class Server.FileOperations.UnbufferedFileStream

Inheritance: System.IO.FileStream
Mostrar archivo Open project: Grimoric/RunUO.T2A

Public Methods

Method Description
BeginWrite ( byte array, int offset, int numBytes, AsyncCallback userCallback, object stateObject ) : IAsyncResult
UnbufferedFileStream ( SafeFileHandle fileHandle, FileAccess access, int bufferSize, bool isAsync ) : System
Write ( byte array, int offset, int count ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Method Details

BeginWrite() public method

public BeginWrite ( byte array, int offset, int numBytes, AsyncCallback userCallback, object stateObject ) : IAsyncResult
array byte
offset int
numBytes int
userCallback AsyncCallback
stateObject object
return IAsyncResult

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

UnbufferedFileStream() public method

public UnbufferedFileStream ( SafeFileHandle fileHandle, FileAccess access, int bufferSize, bool isAsync ) : System
fileHandle SafeFileHandle
access FileAccess
bufferSize int
isAsync bool
return System

Write() public method

public Write ( byte array, int offset, int count ) : void
array byte
offset int
count int
return void