C# 클래스 Granados.X11.XDataReader

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

공개 메소드들

메소드 설명
ReadBytes ( byte buff, int offset, int length ) : byte[]

Reads byte string.

ReadUInt16 ( byte buff, int offset ) : ushort

Reads a word value.

ReadUInt32 ( byte buff, int offset ) : uint

Reads a double word value.

XDataReader ( bool bigEndian ) : System

Constructor

메소드 상세

ReadBytes() 공개 메소드

Reads byte string.
public ReadBytes ( byte buff, int offset, int length ) : byte[]
buff byte buffer
offset int index where the data is read
length int lengt of bytes to read
리턴 byte[]

ReadUInt16() 공개 메소드

Reads a word value.
public ReadUInt16 ( byte buff, int offset ) : ushort
buff byte buffer
offset int index where the data is read
리턴 ushort

ReadUInt32() 공개 메소드

Reads a double word value.
public ReadUInt32 ( byte buff, int offset ) : uint
buff byte buffer
offset int index where the data is read
리턴 uint

XDataReader() 공개 메소드

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