C# Класс NewTOAPIA.InputReport

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

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

Метод Описание
InputReport ( HidDevice oDev ) : System

Construction. Do nothing

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() публичный Метод

Construction. Do nothing
public InputReport ( HidDevice oDev ) : System
oDev HidDevice Creating device
Результат System

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