OnObtainedAdRules

Overview

Notifies that the AATKit has obtained ad rules.

Syntax

OnObtainedAdRules(fromTheServer)

fromTheServer (REQUIRED)

bool Indicates if the rules came from the server. It will return false if the currently used rules come from the AATKit.setInitialRules method or the cached rules are used.

returns void

Examples

AATKitBinding.OnObtainedAdRulesDelegate += OnObtainedAdRules;

public void OnObtainedAdRules(bool fromTheServer)
{
    Debug.Log("onObtainedAdRules event: " + fromTheServer);
}

Last updated