NewTOAPIA.InputReport.SetData C# (CSharp) Method

SetData() public method

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.
return void
        public void SetData(byte[] arrData)
        {
            SetBuffer(arrData);
            ProcessData();
        }