public static void SetWeakDelegate(this ICCCSwiper This, NSObject value)
 {
     if (value == null)
     {
         throw new ArgumentNullException("value");
     }
     global::ApiDefinition.Messaging.void_objc_msgSend_IntPtr(This.Handle, Selector.GetHandle("setDelegate:"), value.Handle);
 }
        public static CCCSwiperConnectionState GetConnectionState(this ICCCSwiper This)
        {
            CCCSwiperConnectionState ret;

            if (IntPtr.Size == 8)
            {
                ret = (CCCSwiperConnectionState)global::ApiDefinition.Messaging.Int64_objc_msgSend(This.Handle, Selector.GetHandle("connectionState"));
            }
            else
            {
                ret = (CCCSwiperConnectionState)global::ApiDefinition.Messaging.int_objc_msgSend(This.Handle, Selector.GetHandle("connectionState"));
            }
            return(ret);
        }
 public static void SetDebugLoggingEnabled(this ICCCSwiper This, bool value)
 {
     global::ApiDefinition.Messaging.void_objc_msgSend_bool(This.Handle, Selector.GetHandle("setDebugLoggingEnabled:"), value);
 }
 public static bool GetDebugLoggingEnabled(this ICCCSwiper This)
 {
     return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("debugLoggingEnabled")));
 }
 public static NSObject GetWeakDelegate(this ICCCSwiper This)
 {
     return(Runtime.GetNSObject(global::ApiDefinition.Messaging.IntPtr_objc_msgSend(This.Handle, Selector.GetHandle("delegate"))));
 }
 public static bool GetShouldShowAudioWarning(this ICCCSwiper This)
 {
     return(global::ApiDefinition.Messaging.bool_objc_msgSend(This.Handle, Selector.GetHandle("shouldShowAudioWarning")));
 }