Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

20 lignes
318 B

  1. using System;
  2. namespace CIG
  3. {
  4. public interface IAdProvider
  5. {
  6. event AdAvailabilityChangedEventHandler AvailabilityChangedEvent;
  7. void StartCaching();
  8. bool ShowAd(Action<bool, bool> callback);
  9. bool IsReady { get; }
  10. AdType AdType { get; }
  11. AdProviderType AdProviderType { get; }
  12. }
  13. }