OnManagedConsentCMPFailedToShow

Overview

Notifies that the used CMP failed to show.

Syntax

OnManagedConsentCMPFailedToShow(error)

error (REQUIRED)

string Error message.

returns void

Examples

AATKitBinding.OnManagedConsentCMPFailedToShowDelegate += OnManagedConsentCMPFailedToShow;

public void OnManagedConsentCMPFailedToShow(string error) 
{
    Debug.Log("OnManagedConsentCMPFailedToShow: " + error);
}

Last updated