C# 클래스 DiscUtils.Streams.DataWriter

파일 보기 프로젝트 열기: gus33000/WindowsBuildIdentifier

보호된 프로퍼티들

프로퍼티 타입 설명
_buffer byte[]
_stream Stream

공개 메소드들

메소드 설명
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

보호된 메소드들

메소드 설명
EnsureBuffer ( ) : void
FlushBuffer ( int count ) : void

메소드 상세

DataWriter() 공개 메소드

public DataWriter ( Stream stream ) : System
stream Stream
리턴 System

EnsureBuffer() 보호된 메소드

protected EnsureBuffer ( ) : void
리턴 void

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

FlushBuffer() 보호된 메소드

protected FlushBuffer ( int count ) : void
count int
리턴 void

Write() 공개 추상적인 메소드

public abstract Write ( int value ) : void
value int
리턴 void

Write() 공개 추상적인 메소드

public abstract Write ( long value ) : void
value long
리턴 void

Write() 공개 추상적인 메소드

public abstract Write ( uint value ) : void
value uint
리턴 void

Write() 공개 추상적인 메소드

public abstract Write ( ulong value ) : void
value ulong
리턴 void

Write() 공개 추상적인 메소드

public abstract Write ( ushort value ) : void
value ushort
리턴 void

WriteBytes() 공개 메소드

public WriteBytes ( Array value ) : void
value Array
리턴 void

WriteBytes() 공개 메소드

public WriteBytes ( Array value, int offset, int count ) : void
value Array
offset int
count int
리턴 void

프로퍼티 상세

_buffer 보호되어 있는 프로퍼티

protected byte[] _buffer
리턴 byte[]

_stream 보호되어 있는 프로퍼티

protected Stream _stream
리턴 Stream