UsbInterruptInEventArgs
UsbInterruptInEventArgs
UsbInterruptInEventArgs
UsbInterruptInEventArgs
Class
Definition
Represents the object that is passed as a parameter to the event handler for the DataReceived event.
public : sealed class UsbInterruptInEventArgs : IUsbInterruptInEventArgspublic sealed class UsbInterruptInEventArgs : IUsbInterruptInEventArgsPublic NotInheritable Class UsbInterruptInEventArgs Implements IUsbInterruptInEventArgs// You can use this class in JavaScript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Remarks
UsbInterruptInEventArgs is used to access data from an interrupt IN pipe. When data arrives in an interrupt IN pipe, it raises the DataReceived event. You must register an event handler for the event. That event handler's parameter is a UsbInterruptInEventArgs object. After the event handler is invoked, you can access the data by using the InterruptData property.
function onDataReceived(eventArgs)
{
/* Your code */
var interruptData = eventArgs.interruptData;
}