ShareWindowCommandSource.CommandInvoked 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 that's raised by the Windows Shell to give your communications app an opportunity to actually start or stop sharing a particular window.
// Register
event_token CommandInvoked(TypedEventHandler<ShareWindowCommandSource, ShareWindowCommandEventArgs const&> const& handler) const;
// Revoke with event_token
void CommandInvoked(event_token const* cookie) const;
// Revoke with event_revoker
ShareWindowCommandSource::CommandInvoked_revoker CommandInvoked(auto_revoke_t, TypedEventHandler<ShareWindowCommandSource, ShareWindowCommandEventArgs const&> const& handler) const;
public event TypedEventHandler<ShareWindowCommandSource,ShareWindowCommandEventArgs> CommandInvoked;
function onCommandInvoked(eventArgs) { /* Your code */ }
shareWindowCommandSource.addEventListener("commandinvoked", onCommandInvoked);
shareWindowCommandSource.removeEventListener("commandinvoked", onCommandInvoked);
- or -
shareWindowCommandSource.oncommandinvoked = onCommandInvoked;
Public Custom Event CommandInvoked As TypedEventHandler(Of ShareWindowCommandSource, ShareWindowCommandEventArgs)