OnManagedConsentCMPFailedToLoad
Overview
Notifies that the used CMP failed to load.
Syntax
OnManagedConsentCMPFailedToLoad(error)
error (REQUIRED)
string Error message.
returns void
Examples
AATKitBinding.OnManagedConsentCMPFailedToLoadDelegate += OnManagedConsentCMPFailedToLoad;
public void OnManagedConsentCMPFailedToLoad(string error)
{
Debug.Log("OnManagedConsentCMPFailedToLoad: " + error);
}
Last updated