C# 클래스 VncSharpWpf.RfbProtocol.BigEndianBinaryWriter

BigEndianBinaryWriter is a wrapper class used to write .NET integral types in Big-Endian order to a stream. It inherits from BinaryWriter and adds Little- to Big-Endian conversion.
상속: System.IO.BinaryWriter
파일 보기 프로젝트 열기: nakano531/VncSharpWpf

공개 메소드들

메소드 설명
BigEndianBinaryWriter ( System input ) : System
BigEndianBinaryWriter ( System input, System encoding ) : System
Write ( int value ) : void
Write ( long value ) : void
Write ( short value ) : void
Write ( uint value ) : void
Write ( ulong value ) : void
Write ( ushort value ) : void

비공개 메소드들

메소드 설명
FlipAndWrite ( byte b ) : void

메소드 상세

BigEndianBinaryWriter() 공개 메소드

public BigEndianBinaryWriter ( System input ) : System
input System
리턴 System

BigEndianBinaryWriter() 공개 메소드

public BigEndianBinaryWriter ( System input, System encoding ) : System
input System
encoding System
리턴 System

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 ( uint value ) : void
value uint
리턴 void

Write() 공개 메소드

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

Write() 공개 메소드

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