C# Класс Granados.X11.XDataReader

Data reader for the X protocol message
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
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