IPKPaymentAuthorizationViewControllerDelegate Interface

Definition

Interface representing the required methods (if any) of the protocol PKPaymentAuthorizationViewControllerDelegate.

[Foundation.Protocol(Name="PKPaymentAuthorizationViewControllerDelegate", WrapperType=typeof(PassKit.PKPaymentAuthorizationViewControllerDelegateWrapper))]
public interface IPKPaymentAuthorizationViewControllerDelegate : IDisposable, ObjCRuntime.INativeObject
type IPKPaymentAuthorizationViewControllerDelegate = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

This interface contains the required methods (if any) from the protocol defined by PKPaymentAuthorizationViewControllerDelegate.

If developers create classes that implement this interface, the implementation methods will automatically be exported to Objective-C with the matching signature from the method defined in the PKPaymentAuthorizationViewControllerDelegate protocol.

Optional methods (if any) are provided by the PKPaymentAuthorizationViewControllerDelegate_Extensions class as extension methods to the interface, allowing developers to invoke any optional methods on the protocol.

Properties

Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Methods

DidAuthorizePayment(PKPaymentAuthorizationViewController, PKPayment, Action<PKPaymentAuthorizationStatus>)

Developers should not use this deprecated method. Developers should use 'DidAuthorizePayment2' instead.

PaymentAuthorizationViewControllerDidFinish(PKPaymentAuthorizationViewController)

Called after the payment authorization has completed.

WillAuthorizePayment(PKPaymentAuthorizationViewController)

Called prior to authorizing a payment.

Extension Methods

DidAuthorizePayment2(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, PKPayment, Action<PKPaymentAuthorizationResult>)
DidSelectPaymentMethod(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, PKPaymentMethod, Action<PKPaymentSummaryItem[]>)

Developers should not use this deprecated method. Developers should use 'DidSelectPaymentMethod2' instead.

DidSelectPaymentMethod2(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, PKPaymentMethod, Action<PKPaymentRequestPaymentMethodUpdate>)
DidSelectShippingAddress(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, ABRecord, PKPaymentShippingAddressSelected)

Indicates the user selected a shipping address.

DidSelectShippingContact(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, PKContact, PKPaymentShippingAddressSelected)

Called after the user has selected a shipping contact.

DidSelectShippingContact2(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, PKContact, Action<PKPaymentRequestShippingContactUpdate>)
DidSelectShippingMethod(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, PKShippingMethod, PKPaymentShippingMethodSelected)

Indicates the user selected a shippingmethod.

DidSelectShippingMethod2(IPKPaymentAuthorizationViewControllerDelegate, PKPaymentAuthorizationViewController, PKShippingMethod, Action<PKPaymentRequestShippingMethodUpdate>)

Applies to