Notifies that Managed Consent needs to show a consent dialog. After receiving this notification, you should pause your application and call the method.
Syntax
OnManagedConsentNeedsUserInterface()
returns void
Examples
AATKitBinding.OnManagedConsentNeedsUserInterfaceDelegate += OnManagedConsentNeedsUserInterface;
public void OnManagedConsentNeedsUserInterface()
{
Debug.Log("OnManagedConsentNeedsUserInterface");
AATKitBinding.ShowConsentDialogIfNeeded();
}