---
title: "appPushManager(_:didReceiveIncomingCallWithUserInfo:)"
framework: networkextension
role: symbol
role_heading: Instance Method
path: "networkextension/neapppushdelegate/apppushmanager(_:didreceiveincomingcallwithuserinfo:)"
---

# appPushManager(_:didReceiveIncomingCallWithUserInfo:)

A delegate method that the framework invokes when the provider reports an incoming call.

## Declaration

```swift
func appPushManager(_ manager: NEAppPushManager, didReceiveIncomingCallWithUserInfo userInfo: [AnyHashable : Any] = [:])
```

## Parameters

- `manager`: The local push manager that receives the call.
- `userInfo`: A dictionary of custom information that the provider supplied in its call to doc://com.apple.networkextension/documentation/NetworkExtension/NEAppPushProvider/reportIncomingCall(userInfo:).

## Discussion

Discussion The framwork calls this method on your delegate when the provider calls the reportIncomingCall(userInfo:) method.
