OnNoAd

Overview

Notifies that placement has failed to load an ad.

Syntax

OnNoAd(placementName)

placementName (REQUIRED)

string Unique name of placement. The same name will be used in gravite.net account.

returns void

Examples

AATKitBinding.OnNoAdDelegate += OnNoAd;

public void OnNoAd(string placementName) 
{
    Debug.Log("OnNoAd: " + placementName);
}

Last updated