Inheritance: IDisposable
Exemplo n.º 1
0
 /// <summary>
 /// Construction. Setup the buffer with the correct output report length dictated by the device
 /// </summary>
 /// <param name="oDev">Creating device</param>
 public OutputReport(HIDDevice oDev)
     : base(oDev)
 {
     SetBuffer(new byte[oDev.OutputReportLength]);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Construction. Do nothing
 /// </summary>
 /// <param name="oDev">Creating device</param>
 public InputReport(HIDDevice oDev)
     : base(oDev)
 {
 }
Exemplo n.º 3
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="oDev">Constructing device</param>
 public Report(HIDDevice oDev)
 {
     // Do nothing
 }