GameBarServices.CommandReceived 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.
Occurs when a Game Bar command is received.
// Register
event_token CommandReceived(TypedEventHandler<GameBarServices, GameBarServicesCommandEventArgs const&> const& handler) const;
// Revoke with event_token
void CommandReceived(event_token const* cookie) const;
// Revoke with event_revoker
GameBarServices::CommandReceived_revoker CommandReceived(auto_revoke_t, TypedEventHandler<GameBarServices, GameBarServicesCommandEventArgs const&> const& handler) const;
public event TypedEventHandler<GameBarServices,GameBarServicesCommandEventArgs> CommandReceived;
function onCommandReceived(eventArgs) { /* Your code */ }
gameBarServices.addEventListener("commandreceived", onCommandReceived);
gameBarServices.removeEventListener("commandreceived", onCommandReceived);
- or -
gameBarServices.oncommandreceived = onCommandReceived;
Public Custom Event CommandReceived As TypedEventHandler(Of GameBarServices, GameBarServicesCommandEventArgs)
Event Type
Windows requirements
App capabilities |
gameBarServices
|