public virtual bool IsValidCVVWithCardFormatter(CCCCardFormatterDelegate formatter)
 {
     if (formatter == null)
     {
         throw new ArgumentNullException("formatter");
     }
     if (IsDirectBinding)
     {
         return(global::ApiDefinition.Messaging.bool_objc_msgSend_IntPtr(this.Handle, Selector.GetHandle("isValidCVVWithCardFormatter:"), formatter.Handle));
     }
     else
     {
         return(global::ApiDefinition.Messaging.bool_objc_msgSendSuper_IntPtr(this.SuperHandle, Selector.GetHandle("isValidCVVWithCardFormatter:"), formatter.Handle));
     }
 }
 public static bool IsValidCVVWithCardFormatter(this ICCCCVVFormatterDelegate This, CCCCardFormatterDelegate formatter)
 {
     if (formatter == null)
     {
         throw new ArgumentNullException("formatter");
     }
     return(global::ApiDefinition.Messaging.bool_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("isValidCVVWithCardFormatter:"), formatter.Handle));
 }