C# Class SharpCifs.Smb.SmbRandomAccessFile

Show file Open project: brandonprry/Potato

Public Methods

Method Description
Close ( ) : void
GetFilePointer ( ) : long
Length ( ) : long
Read ( ) : int
Read ( byte b ) : int
Read ( byte b, int off, int len ) : int
ReadBoolean ( ) : bool
ReadByte ( ) : byte
ReadChar ( ) : char
ReadDouble ( ) : double
ReadFloat ( ) : float
ReadFully ( byte b ) : void
ReadFully ( byte b, int off, int len ) : void
ReadInt ( ) : int
ReadLine ( ) : string
ReadLong ( ) : long
ReadShort ( ) : short
ReadUnsignedByte ( ) : int
ReadUnsignedShort ( ) : int
ReadUtf ( ) : string
Seek ( long pos ) : void
SetLength ( long newLength ) : void
SkipBytes ( int n ) : int
SmbRandomAccessFile ( SmbFile file, string mode ) : System
SmbRandomAccessFile ( string url, string mode, int shareAccess ) : System
Write ( byte b ) : void
Write ( byte b, int off, int len ) : void
Write ( int b ) : void
WriteBoolean ( bool v ) : void
WriteByte ( int v ) : void
WriteBytes ( string s ) : void
WriteChar ( int v ) : void
WriteDouble ( double v ) : void
WriteFloat ( float v ) : void
WriteInt ( int v ) : void
WriteLong ( long v ) : void
WriteShort ( int v ) : void
WriteUtf ( string str ) : void

Method Details

Close() public method

public Close ( ) : void
return void

GetFilePointer() public method

public GetFilePointer ( ) : long
return long

Length() public method

public Length ( ) : long
return long

Read() public method

public Read ( ) : int
return int

Read() public method

public Read ( byte b ) : int
b byte
return int

Read() public method

public Read ( byte b, int off, int len ) : int
b byte
off int
len int
return int

ReadBoolean() public method

public ReadBoolean ( ) : bool
return bool

ReadByte() public method

public ReadByte ( ) : byte
return byte

ReadChar() public method

public ReadChar ( ) : char
return char

ReadDouble() public method

public ReadDouble ( ) : double
return double

ReadFloat() public method

public ReadFloat ( ) : float
return float

ReadFully() public method

public ReadFully ( byte b ) : void
b byte
return void

ReadFully() public method

public ReadFully ( byte b, int off, int len ) : void
b byte
off int
len int
return void

ReadInt() public method

public ReadInt ( ) : int
return int

ReadLine() public method

public ReadLine ( ) : string
return string

ReadLong() public method

public ReadLong ( ) : long
return long

ReadShort() public method

public ReadShort ( ) : short
return short

ReadUnsignedByte() public method

public ReadUnsignedByte ( ) : int
return int

ReadUnsignedShort() public method

public ReadUnsignedShort ( ) : int
return int

ReadUtf() public method

public ReadUtf ( ) : string
return string

Seek() public method

public Seek ( long pos ) : void
pos long
return void

SetLength() public method

public SetLength ( long newLength ) : void
newLength long
return void

SkipBytes() public method

public SkipBytes ( int n ) : int
n int
return int

SmbRandomAccessFile() public method

public SmbRandomAccessFile ( SmbFile file, string mode ) : System
file SmbFile
mode string
return System

SmbRandomAccessFile() public method

public SmbRandomAccessFile ( string url, string mode, int shareAccess ) : System
url string
mode string
shareAccess int
return System

Write() public method

public Write ( byte b ) : void
b byte
return void

Write() public method

public Write ( byte b, int off, int len ) : void
b byte
off int
len int
return void

Write() public method

public Write ( int b ) : void
b int
return void

WriteBoolean() public method

public WriteBoolean ( bool v ) : void
v bool
return void

WriteByte() public method

public WriteByte ( int v ) : void
v int
return void

WriteBytes() public method

public WriteBytes ( string s ) : void
s string
return void

WriteChar() public method

public WriteChar ( int v ) : void
v int
return void

WriteDouble() public method

public WriteDouble ( double v ) : void
v double
return void

WriteFloat() public method

public WriteFloat ( float v ) : void
v float
return void

WriteInt() public method

public WriteInt ( int v ) : void
v int
return void

WriteLong() public method

public WriteLong ( long v ) : void
v long
return void

WriteShort() public method

public WriteShort ( int v ) : void
v int
return void

WriteUtf() public method

public WriteUtf ( string str ) : void
str string
return void