# OnPauseForAd

### Overview <a href="#markdown-header-overview" id="markdown-header-overview"></a>

Notifies that ad went fullscreen and that application should pause.

### Warning <a href="#markdown-header-warning" id="markdown-header-warning"></a>

This callback is unreliable due to inconsistent use of callbacks in different ad network SDKs.

### Syntax <a href="#markdown-header-syntax" id="markdown-header-syntax"></a>

```csharp
OnPauseForAd(placementName)
```

placementName **(REQUIRED)**

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

**returns&#x20;*****void***

### Examples <a href="#markdown-header-examples" id="markdown-header-examples"></a>

```csharp
AATKitBinding.OnPauseForAdDelegate += OnPauseForAd;

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