DevicePortalConnection.RequestReceived 事件
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
透過 Windows Device Portal 伺服器收到要求時引發。 裝置入口網站外掛程式應用程式必須實作此事件的處理常式。
// Register
event_token RequestReceived(TypedEventHandler<DevicePortalConnection, DevicePortalConnectionRequestReceivedEventArgs const&> const& handler) const;
// Revoke with event_token
void RequestReceived(event_token const* cookie) const;
// Revoke with event_revoker
DevicePortalConnection::RequestReceived_revoker RequestReceived(auto_revoke_t, TypedEventHandler<DevicePortalConnection, DevicePortalConnectionRequestReceivedEventArgs const&> const& handler) const;
public event TypedEventHandler<DevicePortalConnection,DevicePortalConnectionRequestReceivedEventArgs> RequestReceived;
function onRequestReceived(eventArgs) { /* Your code */ }
devicePortalConnection.addEventListener("requestreceived", onRequestReceived);
devicePortalConnection.removeEventListener("requestreceived", onRequestReceived);
- or -
devicePortalConnection.onrequestreceived = onRequestReceived;
Public Custom Event RequestReceived As TypedEventHandler(Of DevicePortalConnection, DevicePortalConnectionRequestReceivedEventArgs)