InterstitialAd.Completed 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.
Raised when the ad is closed and the ad experience is considered complete.
// Register
event_token Completed(EventHandler<IInspectable> const& handler) const;
// Revoke with event_token
void Completed(event_token const* cookie) const;
// Revoke with event_revoker
InterstitialAd::Completed_revoker Completed(auto_revoke_t, EventHandler<IInspectable> const& handler) const;
public event System.EventHandler<object> Completed;
function onCompleted(eventArgs) { /* Your code */ }
interstitialAd.addEventListener("completed", onCompleted);
interstitialAd.removeEventListener("completed", onCompleted);
- or -
interstitialAd.oncompleted = onCompleted;
Public Custom Event Completed As EventHandler(Of Object)