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.
|
- using System;
-
- namespace CIG
- {
- public interface IAdProvider
- {
- event AdAvailabilityChangedEventHandler AvailabilityChangedEvent;
-
- void StartCaching();
-
- bool ShowAd(Action<bool, bool> callback);
-
- bool IsReady { get; }
-
- AdType AdType { get; }
-
- AdProviderType AdProviderType { get; }
- }
- }
|