C# Class Quickbeam.ByteAccess.FileByteAccess

Inheritance: IByteAccess
Afficher le fichier Open project: ChadSki/Quickbeam

Méthodes publiques

Méthode Description
FileByteAccess ( MemoryMappedViewAccessor f ) : System
ReadAscii ( int offset, int size ) : string
ReadAsciiz ( int offset ) : string
ReadBytes ( int offset, int size ) : byte[]
ReadDouble ( int offset ) : double
ReadInt16 ( int offset ) : short
ReadInt32 ( int offset ) : int
ReadInt64 ( int offset ) : long
ReadInt8 ( int offset ) : sbyte
ReadSingle ( int offset ) : float
ReadUInt16 ( int offset ) : ushort
ReadUInt32 ( int offset ) : uint
ReadUInt64 ( int offset ) : ulong
ReadUInt8 ( int offset ) : byte
WriteAscii ( int offset, string toWrite ) : void
WriteAsciiz ( int offset, string toWrite ) : void
WriteBytes ( int offset, byte toWrite ) : void
WriteFloat32 ( int offset, float toWrite ) : void
WriteFloat64 ( int offset, double toWrite ) : void
WriteInt16 ( int offset, short toWrite ) : void
WriteInt32 ( int offset, int toWrite ) : void
WriteInt64 ( int offset, long toWrite ) : void
WriteInt8 ( int offset, sbyte toWrite ) : void
WriteUInt16 ( int offset, ushort toWrite ) : void
WriteUInt32 ( int offset, uint toWrite ) : void
WriteUInt64 ( int offset, ulong toWrite ) : void
WriteUInt8 ( int offset, byte toWrite ) : void

Method Details

FileByteAccess() public méthode

public FileByteAccess ( MemoryMappedViewAccessor f ) : System
f System.IO.MemoryMappedFiles.MemoryMappedViewAccessor
Résultat System

ReadAscii() public méthode

public ReadAscii ( int offset, int size ) : string
offset int
size int
Résultat string

ReadAsciiz() public méthode

public ReadAsciiz ( int offset ) : string
offset int
Résultat string

ReadBytes() public méthode

public ReadBytes ( int offset, int size ) : byte[]
offset int
size int
Résultat byte[]

ReadDouble() public méthode

public ReadDouble ( int offset ) : double
offset int
Résultat double

ReadInt16() public méthode

public ReadInt16 ( int offset ) : short
offset int
Résultat short

ReadInt32() public méthode

public ReadInt32 ( int offset ) : int
offset int
Résultat int

ReadInt64() public méthode

public ReadInt64 ( int offset ) : long
offset int
Résultat long

ReadInt8() public méthode

public ReadInt8 ( int offset ) : sbyte
offset int
Résultat sbyte

ReadSingle() public méthode

public ReadSingle ( int offset ) : float
offset int
Résultat float

ReadUInt16() public méthode

public ReadUInt16 ( int offset ) : ushort
offset int
Résultat ushort

ReadUInt32() public méthode

public ReadUInt32 ( int offset ) : uint
offset int
Résultat uint

ReadUInt64() public méthode

public ReadUInt64 ( int offset ) : ulong
offset int
Résultat ulong

ReadUInt8() public méthode

public ReadUInt8 ( int offset ) : byte
offset int
Résultat byte

WriteAscii() public méthode

public WriteAscii ( int offset, string toWrite ) : void
offset int
toWrite string
Résultat void

WriteAsciiz() public méthode

public WriteAsciiz ( int offset, string toWrite ) : void
offset int
toWrite string
Résultat void

WriteBytes() public méthode

public WriteBytes ( int offset, byte toWrite ) : void
offset int
toWrite byte
Résultat void

WriteFloat32() public méthode

public WriteFloat32 ( int offset, float toWrite ) : void
offset int
toWrite float
Résultat void

WriteFloat64() public méthode

public WriteFloat64 ( int offset, double toWrite ) : void
offset int
toWrite double
Résultat void

WriteInt16() public méthode

public WriteInt16 ( int offset, short toWrite ) : void
offset int
toWrite short
Résultat void

WriteInt32() public méthode

public WriteInt32 ( int offset, int toWrite ) : void
offset int
toWrite int
Résultat void

WriteInt64() public méthode

public WriteInt64 ( int offset, long toWrite ) : void
offset int
toWrite long
Résultat void

WriteInt8() public méthode

public WriteInt8 ( int offset, sbyte toWrite ) : void
offset int
toWrite sbyte
Résultat void

WriteUInt16() public méthode

public WriteUInt16 ( int offset, ushort toWrite ) : void
offset int
toWrite ushort
Résultat void

WriteUInt32() public méthode

public WriteUInt32 ( int offset, uint toWrite ) : void
offset int
toWrite uint
Résultat void

WriteUInt64() public méthode

public WriteUInt64 ( int offset, ulong toWrite ) : void
offset int
toWrite ulong
Résultat void

WriteUInt8() public méthode

public WriteUInt8 ( int offset, byte toWrite ) : void
offset int
toWrite byte
Résultat void