DesktopPopupSiteBridge.FragmentRootAutomationProviderRequested 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.
// Register
event_token FragmentRootAutomationProviderRequested(TypedEventHandler<IContentSiteAutomation, ContentSiteAutomationProviderRequestedEventArgs const&> const& handler) const;
// Revoke with event_token
void FragmentRootAutomationProviderRequested(event_token const* cookie) const;
// Revoke with event_revoker
DesktopPopupSiteBridge::FragmentRootAutomationProviderRequested_revoker FragmentRootAutomationProviderRequested(auto_revoke_t, TypedEventHandler<IContentSiteAutomation, ContentSiteAutomationProviderRequestedEventArgs const&> const& handler) const;
public event TypedEventHandler<IContentSiteAutomation,ContentSiteAutomationProviderRequestedEventArgs> FragmentRootAutomationProviderRequested;
function onFragmentRootAutomationProviderRequested(eventArgs) { /* Your code */ }
desktopPopupSiteBridge.addEventListener("fragmentrootautomationproviderrequested", onFragmentRootAutomationProviderRequested);
desktopPopupSiteBridge.removeEventListener("fragmentrootautomationproviderrequested", onFragmentRootAutomationProviderRequested);
- or -
desktopPopupSiteBridge.onfragmentrootautomationproviderrequested = onFragmentRootAutomationProviderRequested;
Public Custom Event FragmentRootAutomationProviderRequested As TypedEventHandler(Of IContentSiteAutomation, ContentSiteAutomationProviderRequestedEventArgs) Implements FragmentRootAutomationProviderRequested