C# Класс Mirror.UsbLibrary.InputReport

Defines a base class for input reports. To use input reports, use the SetData method and override the ProcessData method.
Наследование: Report
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
ProcessData ( ) : void

Override this to process the input report into something useful

SetData ( byte arrData ) : void

Call this to set the buffer given a raw input report. Calls an overridable method to should automatically parse the bytes into meaningul structures.

Защищенные методы

Метод Описание
InputReport ( HIDDevice oDev )

Construction. Do nothing

Описание методов

InputReport() защищенный Метод

Construction. Do nothing
protected InputReport ( HIDDevice oDev )
oDev HIDDevice Creating device

ProcessData() публичный абстрактный Метод

Override this to process the input report into something useful
public abstract ProcessData ( ) : void
Результат void

SetData() публичный Метод

Call this to set the buffer given a raw input report. Calls an overridable method to should automatically parse the bytes into meaningul structures.
public SetData ( byte arrData ) : void
arrData byte Raw input report.
Результат void