C# 클래스 UnitWrappers.System.IO.BinaryWriterWrap

상속: IBinaryWriter
파일 보기 프로젝트 열기: OpenSharp/UnitWrappers

공개 메소드들

메소드 설명
BinaryWriterWrap ( BinaryWriter writer ) : System

Initializes a new instance of the T:UnitWrappers.System.IO.BinaryWriterWrap class on the specified path.

BinaryWriterWrap ( Stream output ) : System

Initializes a new instance of the BinaryWriterWrap class based on the supplied stream and using UTF-8 as the encoding for strings.

BinaryWriterWrap ( Stream output, Encoding encoding ) : System

Initializes a new instance of the BinaryWriterWrap class based on the supplied stream and a specific character encoding.

Close ( ) : void
Dispose ( ) : void
Flush ( ) : void
Seek ( int offset, SeekOrigin origin ) : long
Write ( bool value ) : void
Write ( byte value ) : void
Write ( byte buffer, int index, int count ) : void
Write ( char ch ) : void
Write ( char chars, int index, int count ) : void
Write ( decimal value ) : void
Write ( double value ) : void
Write ( float value ) : void
Write ( int value ) : void
Write ( long value ) : void
Write ( short value ) : void
Write ( string value ) : void

비공개 메소드들

메소드 설명
Write ( sbyte value ) : void
Write ( uint value ) : void
Write ( ulong value ) : void
Write ( ushort value ) : void

메소드 상세

BinaryWriterWrap() 공개 메소드

Initializes a new instance of the T:UnitWrappers.System.IO.BinaryWriterWrap class on the specified path.
public BinaryWriterWrap ( BinaryWriter writer ) : System
writer System.IO.BinaryWriter The object.
리턴 System

BinaryWriterWrap() 공개 메소드

Initializes a new instance of the BinaryWriterWrap class based on the supplied stream and using UTF-8 as the encoding for strings.
public BinaryWriterWrap ( Stream output ) : System
output Stream The output stream.
리턴 System

BinaryWriterWrap() 공개 메소드

Initializes a new instance of the BinaryWriterWrap class based on the supplied stream and a specific character encoding.
public BinaryWriterWrap ( Stream output, Encoding encoding ) : System
output Stream The supplied stream.
encoding System.Text.Encoding The character encoding.
리턴 System

Close() 공개 메소드

public Close ( ) : void
리턴 void

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

Seek() 공개 메소드

public Seek ( int offset, SeekOrigin origin ) : long
offset int
origin SeekOrigin
리턴 long

Write() 공개 메소드

public Write ( bool value ) : void
value bool
리턴 void

Write() 공개 메소드

public Write ( byte value ) : void
value byte
리턴 void

Write() 공개 메소드

public Write ( byte buffer, int index, int count ) : void
buffer byte
index int
count int
리턴 void

Write() 공개 메소드

public Write ( char ch ) : void
ch char
리턴 void

Write() 공개 메소드

public Write ( char chars, int index, int count ) : void
chars char
index int
count int
리턴 void

Write() 공개 메소드

public Write ( decimal value ) : void
value decimal
리턴 void

Write() 공개 메소드

public Write ( double value ) : void
value double
리턴 void

Write() 공개 메소드

public Write ( float value ) : void
value float
리턴 void

Write() 공개 메소드

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

Write() 공개 메소드

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

Write() 공개 메소드

public Write ( short value ) : void
value short
리턴 void

Write() 공개 메소드

public Write ( string value ) : void
value string
리턴 void