CXProvider.ReportNewIncomingCallAsync(NSUuid, CXCallUpdate) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reports a new incoming call to the system.
public virtual System.Threading.Tasks.Task ReportNewIncomingCallAsync (Foundation.NSUuid uuid, CallKit.CXCallUpdate update);
abstract member ReportNewIncomingCallAsync : Foundation.NSUuid * CallKit.CXCallUpdate -> System.Threading.Tasks.Task
override this.ReportNewIncomingCallAsync : Foundation.NSUuid * CallKit.CXCallUpdate -> System.Threading.Tasks.Task
Parameters
- uuid
- NSUuid
The identifier of the call.
- update
- CXCallUpdate
An object that contains the updated parameters for the call.
Returns
A task that represents the asynchronous ReportNewIncomingCall operation
Remarks
The ReportNewIncomingCallAsync method is suitable to be used with C# async by returning control to the caller with a Task representing the operation.
To be added.