RawGameController.UserChanged 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.
Signals when the user associated with the raw game controller has changed.
// Register
event_token UserChanged(TypedEventHandler<IGameController, UserChangedEventArgs const&> const& handler) const;
// Revoke with event_token
void UserChanged(event_token const* cookie) const;
// Revoke with event_revoker
RawGameController::UserChanged_revoker UserChanged(auto_revoke_t, TypedEventHandler<IGameController, UserChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<IGameController,UserChangedEventArgs> UserChanged;
function onUserChanged(eventArgs) { /* Your code */ }
rawGameController.addEventListener("userchanged", onUserChanged);
rawGameController.removeEventListener("userchanged", onUserChanged);
- or -
rawGameController.onuserchanged = onUserChanged;
Public Custom Event UserChanged As TypedEventHandler(Of IGameController, UserChangedEventArgs) Implements UserChanged
Event Type
Implements
Remarks
See Tracking users and their devices for more information about how to keep track of users.