UsbInterruptInPipe.DataReceived Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se genera cuando la canalización de interrupción recibe datos del punto de conexión in de interrupción.
// Register
event_token DataReceived(TypedEventHandler<UsbInterruptInPipe, UsbInterruptInEventArgs const&> const& handler) const;
// Revoke with event_token
void DataReceived(event_token const* cookie) const;
// Revoke with event_revoker
UsbInterruptInPipe::DataReceived_revoker DataReceived(auto_revoke_t, TypedEventHandler<UsbInterruptInPipe, UsbInterruptInEventArgs const&> const& handler) const;
public event TypedEventHandler<UsbInterruptInPipe,UsbInterruptInEventArgs> DataReceived;
function onDataReceived(eventArgs) { /* Your code */ }
usbInterruptInPipe.addEventListener("datareceived", onDataReceived);
usbInterruptInPipe.removeEventListener("datareceived", onDataReceived);
- or -
usbInterruptInPipe.ondatareceived = onDataReceived;
Public Custom Event DataReceived As TypedEventHandler(Of UsbInterruptInPipe, UsbInterruptInEventArgs)