You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

52 lines
1.8 KiB

  1. // Copyright (C) 2015 Google, Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. using System;
  15. using GoogleMobileAds.Api;
  16. namespace GoogleMobileAds.Common {
  17. public interface IInterstitialClient
  18. {
  19. // Ad event fired when the interstitial ad has been received.
  20. event EventHandler<EventArgs> OnAdLoaded;
  21. // Ad event fired when the interstitial ad has failed to load.
  22. event EventHandler<AdFailedToLoadEventArgs> OnAdFailedToLoad;
  23. // Ad event fired when the interstitial ad is opened.
  24. event EventHandler<EventArgs> OnAdOpening;
  25. // Ad event fired when the interstitial ad is closed.
  26. event EventHandler<EventArgs> OnAdClosed;
  27. // Ad event fired when the interstitial ad is leaving the application.
  28. event EventHandler<EventArgs> OnAdLeavingApplication;
  29. // Creates an InterstitialAd.
  30. void CreateInterstitialAd(string adUnitId);
  31. // Loads a new interstitial request.
  32. void LoadAd(AdRequest request);
  33. // Determines whether the interstitial has loaded.
  34. bool IsLoaded();
  35. // Shows the InterstitialAd.
  36. void ShowInterstitial();
  37. // Destroys an InterstitialAd.
  38. void DestroyInterstitial();
  39. // Returns the mediation adapter class name.
  40. string MediationAdapterClassName();
  41. }
  42. }