C# Class DiscUtils.Streams.DataWriter

Afficher le fichier Open project: gus33000/WindowsBuildIdentifier

Protected Properties

Свойство Type Description
_buffer byte[]
_stream Stream

Méthodes publiques

Méthode Description
DataWriter ( Stream stream ) : System
Flush ( ) : void
Write ( int value ) : void
Write ( long value ) : void
Write ( uint value ) : void
Write ( ulong value ) : void
Write ( ushort value ) : void
WriteBytes ( Array value ) : void
WriteBytes ( Array value, int offset, int count ) : void

Méthodes protégées

Méthode Description
EnsureBuffer ( ) : void
FlushBuffer ( int count ) : void

Method Details

DataWriter() public méthode

public DataWriter ( Stream stream ) : System
stream Stream
Résultat System

EnsureBuffer() protected méthode

protected EnsureBuffer ( ) : void
Résultat void

Flush() public méthode

public Flush ( ) : void
Résultat void

FlushBuffer() protected méthode

protected FlushBuffer ( int count ) : void
count int
Résultat void

Write() public abstract méthode

public abstract Write ( int value ) : void
value int
Résultat void

Write() public abstract méthode

public abstract Write ( long value ) : void
value long
Résultat void

Write() public abstract méthode

public abstract Write ( uint value ) : void
value uint
Résultat void

Write() public abstract méthode

public abstract Write ( ulong value ) : void
value ulong
Résultat void

Write() public abstract méthode

public abstract Write ( ushort value ) : void
value ushort
Résultat void

WriteBytes() public méthode

public WriteBytes ( Array value ) : void
value Array
Résultat void

WriteBytes() public méthode

public WriteBytes ( Array value, int offset, int count ) : void
value Array
offset int
count int
Résultat void

Property Details

_buffer protected_oe property

protected byte[] _buffer
Résultat byte[]

_stream protected_oe property

protected Stream _stream
Résultat Stream