CXCallController.RequestTransaction 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
RequestTransaction(CXAction, Action<NSError>) |
Requests that the specified action be performed by the provider, and runs a handler on the call controller's queue when the operation is complete. |
RequestTransaction(CXAction[], Action<NSError>) |
Requests that the specified actions be performed by the provider, and runs a handler on the call controller's queue when the operation is complete. |
RequestTransaction(CXTransaction, Action<NSError>) |
Requests that the system run a transaction. |
RequestTransaction(CXAction, Action<NSError>)
Requests that the specified action be performed by the provider, and runs a handler on the call controller's queue when the operation is complete.
[Foundation.Export("requestTransactionWithAction:completion:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void RequestTransaction (CallKit.CXAction action, Action<Foundation.NSError> completion);
abstract member RequestTransaction : CallKit.CXAction * Action<Foundation.NSError> -> unit
override this.RequestTransaction : CallKit.CXAction * Action<Foundation.NSError> -> unit
Parameters
Method to run after the transaction completes.
This parameter can be null
.
- Attributes
Applies to
RequestTransaction(CXAction[], Action<NSError>)
Requests that the specified actions be performed by the provider, and runs a handler on the call controller's queue when the operation is complete.
[Foundation.Export("requestTransactionWithActions:completion:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void RequestTransaction (CallKit.CXAction[] actions, Action<Foundation.NSError> completion);
abstract member RequestTransaction : CallKit.CXAction[] * Action<Foundation.NSError> -> unit
override this.RequestTransaction : CallKit.CXAction[] * Action<Foundation.NSError> -> unit
Parameters
Method to run after the transaction completes.
This parameter can be null
.
- Attributes
Applies to
RequestTransaction(CXTransaction, Action<NSError>)
Requests that the system run a transaction.
[Foundation.Export("requestTransaction:completion:")]
public virtual void RequestTransaction (CallKit.CXTransaction transaction, Action<Foundation.NSError> completion);
abstract member RequestTransaction : CallKit.CXTransaction * Action<Foundation.NSError> -> unit
override this.RequestTransaction : CallKit.CXTransaction * Action<Foundation.NSError> -> unit
Parameters
- transaction
- CXTransaction
The transaction to run.
- Attributes