Interface IModalAd
Ad that can be loaded and shown.
Inherited Members
Namespace: AppstockSDK.Api
Assembly: Appstock.Core.dll
Syntax
public interface IModalAd : ILoadableAd
Properties
Loaded
Gets if ad has loaded.
Declaration
bool Loaded { get; }
Property Value
| Type | Description |
|---|---|
| bool |
|
Methods
Show(Action?)
Show the ad on screen.
Declaration
void Show(Action? actionOnUIThread = null)
Parameters
| Type | Name | Description |
|---|---|---|
| Action | actionOnUIThread | Something you want to execute immediately when the ad is being added to the screen
|