C# 클래스 Granados.X11.XProtocolMessage

X protocol message builder
파일 보기 프로젝트 열기: poderosaproject/poderosa 1 사용 예제들

공개 메소드들

메소드 설명
AppendByte ( byte v ) : XProtocolMessage

Appends a single byte.

AppendBytes ( byte s ) : XProtocolMessage

Appends the byte string.

AppendPaddingBytesOf ( byte s ) : XProtocolMessage

Appends the padding bytes for the specified byte string.

AppendUInt16 ( ushort v ) : XProtocolMessage

Appends a word value.

AppendUInt32 ( uint v ) : XProtocolMessage

Appends a double word value.

AsDataFragment ( ) : Granados.IO.DataFragment

Return a DataFragment that represents the message data.

Clear ( ) : XProtocolMessage

Clears the internal buffer.

XProtocolMessage ( bool bigEndian ) : System

Constructor

메소드 상세

AppendByte() 공개 메소드

Appends a single byte.
public AppendByte ( byte v ) : XProtocolMessage
v byte byte data
리턴 XProtocolMessage

AppendBytes() 공개 메소드

Appends the byte string.
public AppendBytes ( byte s ) : XProtocolMessage
s byte byte string
리턴 XProtocolMessage

AppendPaddingBytesOf() 공개 메소드

Appends the padding bytes for the specified byte string.
public AppendPaddingBytesOf ( byte s ) : XProtocolMessage
s byte byte string
리턴 XProtocolMessage

AppendUInt16() 공개 메소드

Appends a word value.
public AppendUInt16 ( ushort v ) : XProtocolMessage
v ushort word data
리턴 XProtocolMessage

AppendUInt32() 공개 메소드

Appends a double word value.
public AppendUInt32 ( uint v ) : XProtocolMessage
v uint double word data
리턴 XProtocolMessage

AsDataFragment() 공개 메소드

Return a DataFragment that represents the message data.
public AsDataFragment ( ) : Granados.IO.DataFragment
리턴 Granados.IO.DataFragment

Clear() 공개 메소드

Clears the internal buffer.
public Clear ( ) : XProtocolMessage
리턴 XProtocolMessage

XProtocolMessage() 공개 메소드

Constructor
public XProtocolMessage ( bool bigEndian ) : System
bigEndian bool specifies that the byte-order is big-endian
리턴 System