다음을 통해 공유


UsbInterruptInPipe.DataReceived 이벤트

정의

인터럽트 파이프가 인터럽트 IN 엔드포인트에서 데이터를 수신할 때 발생합니다.

// 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) 

이벤트 유형

적용 대상