Share via


CXProvider.GetPendingCallActions Method

Definition

Overloads

Name Description
GetPendingCallActions(Class, NSUuid)
GetPendingCallActions<T>(NSUuid)

Returns a list of the actions of class T that have yet to be completed on the call that is identified by callUuid.

GetPendingCallActions(Class, NSUuid)

[Foundation.Export("pendingCallActionsOfClass:withCallUUID:")]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual CallKit.CXCallAction[] GetPendingCallActions(ObjCRuntime.Class callActionClass, Foundation.NSUuid callUuid);
[<Foundation.Export("pendingCallActionsOfClass:withCallUUID:")>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member GetPendingCallActions : ObjCRuntime.Class * Foundation.NSUuid -> CallKit.CXCallAction[]
override this.GetPendingCallActions : ObjCRuntime.Class * Foundation.NSUuid -> CallKit.CXCallAction[]

Parameters

callActionClass
Class
callUuid
NSUuid

Returns

Attributes

Applies to

GetPendingCallActions<T>(NSUuid)

Returns a list of the actions of class T that have yet to be completed on the call that is identified by callUuid.

public CallKit.CXCallAction[] GetPendingCallActions<T>(Foundation.NSUuid callUuid);
member this.GetPendingCallActions : Foundation.NSUuid -> CallKit.CXCallAction[]

Type Parameters

T

The type of call action to return.

Parameters

callUuid
NSUuid

The identifier of the call for which to return pending call actions.

Returns

A list of the actions of type T that have yet to be completed on the call that is identified by callUuid.

Applies to