public static void PaymentController(this ICCCPaymentControllerDelegate This, CCCPaymentController controller, bool result)
 {
     if (controller == null)
     {
         throw new ArgumentNullException("controller");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr_bool(This.Handle, Selector.GetHandle("paymentController:finishedApplePayWithResult:"), controller.Handle, result);
 }
 public static void DidCancelPaymentController(this ICCCPaymentControllerDelegate This, CCCPaymentController controller)
 {
     if (controller == null)
     {
         throw new ArgumentNullException("controller");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("didCancelPaymentController:"), controller.Handle);
 }