CXProvider.GetPendingCallActions 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.
Overloads
GetPendingCallActions(Class, NSUuid) |
Returns a list of the actions of class |
GetPendingCallActions<T>(NSUuid) |
Returns a list of the actions of class |
GetPendingCallActions(Class, NSUuid)
Returns a list of the actions of class callActionClass
that have yet to be completed on the call that is identified by callUuid
.
[Foundation.Export("pendingCallActionsOfClass:withCallUUID:")]
public virtual CallKit.CXCallAction[] GetPendingCallActions (ObjCRuntime.Class callActionClass, Foundation.NSUuid callUuid);
abstract member GetPendingCallActions : ObjCRuntime.Class * Foundation.NSUuid -> CallKit.CXCallAction[]
override this.GetPendingCallActions : ObjCRuntime.Class * Foundation.NSUuid -> CallKit.CXCallAction[]
Parameters
- callActionClass
- Class
The class of call actions to return.
- callUuid
- NSUuid
The identifier of the call for which to return pending call actions.
Returns
A list of the actions of class callActionClass
that have yet to be completed on the call that is identified by callUuid
.
- 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
.