MiracastReceiverGameControllerDevice.Changed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
An event which is raised when any of the properties on the MiracastReceiverGameControllerDevice has changed.
// Register
event_token Changed(TypedEventHandler<MiracastReceiverGameControllerDevice, IInspectable const&> const& handler) const;
// Revoke with event_token
void Changed(event_token const* cookie) const;
// Revoke with event_revoker
MiracastReceiverGameControllerDevice::Changed_revoker Changed(auto_revoke_t, TypedEventHandler<MiracastReceiverGameControllerDevice, IInspectable const&> const& handler) const;
public event TypedEventHandler<MiracastReceiverGameControllerDevice,object> Changed;
function onChanged(eventArgs) { /* Your code */ }
miracastReceiverGameControllerDevice.addEventListener("changed", onChanged);
miracastReceiverGameControllerDevice.removeEventListener("changed", onChanged);
- or -
miracastReceiverGameControllerDevice.onchanged = onChanged;
Public Custom Event Changed As TypedEventHandler(Of MiracastReceiverGameControllerDevice, Object)
Event Type
TypedEventHandler<MiracastReceiverGameControllerDevice,Object>
TypedEventHandler<MiracastReceiverGameControllerDevice,IInspectable>