public static void DidReturnAtr(this IABTBluetoothReaderDelegate This, ABTBluetoothReader bluetoothReader, NSData atr, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (atr == null)
     {
         throw new ArgumentNullException("atr");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr(This.Handle, Selector.GetHandle("bluetoothReader:didReturnAtr:error:"), bluetoothReader.Handle, atr.Handle, error.Handle);
 }
Example #2
0
 public virtual void DidReturnCardStatus(ABTBluetoothReader bluetoothReader, global::System.nuint cardStatus, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     if (IsDirectBinding)
     {
         global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_nuint_IntPtr(this.Handle, Selector.GetHandle("bluetoothReader:didReturnCardStatus:error:"), bluetoothReader.Handle, cardStatus, error.Handle);
     }
     else
     {
         global::ApiDefinitions.Messaging.void_objc_msgSendSuper_IntPtr_nuint_IntPtr(this.SuperHandle, Selector.GetHandle("bluetoothReader:didReturnCardStatus:error:"), bluetoothReader.Handle, cardStatus, error.Handle);
     }
 }
Example #3
0
 public virtual void DidPowerOffCardWithError(ABTBluetoothReader bluetoothReader, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     if (IsDirectBinding)
     {
         global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_IntPtr(this.Handle, Selector.GetHandle("bluetoothReader:didPowerOffCardWithError:"), bluetoothReader.Handle, error.Handle);
     }
     else
     {
         global::ApiDefinitions.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr(this.SuperHandle, Selector.GetHandle("bluetoothReader:didPowerOffCardWithError:"), bluetoothReader.Handle, error.Handle);
     }
 }
Example #4
0
 public virtual void DidAttachPeripheral(ABTBluetoothReader bluetoothReader, global::CoreBluetooth.CBPeripheral peripheral, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (peripheral == null)
     {
         throw new ArgumentNullException("peripheral");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     if (IsDirectBinding)
     {
         global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr(this.Handle, Selector.GetHandle("bluetoothReader:didAttachPeripheral:error:"), bluetoothReader.Handle, peripheral.Handle, error.Handle);
     }
     else
     {
         global::ApiDefinitions.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr_IntPtr(this.SuperHandle, Selector.GetHandle("bluetoothReader:didAttachPeripheral:error:"), bluetoothReader.Handle, peripheral.Handle, error.Handle);
     }
 }
Example #5
0
 public virtual void DidReturnResponseApdu(ABTBluetoothReader bluetoothReader, NSData apdu, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (apdu == null)
     {
         throw new ArgumentNullException("apdu");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     if (IsDirectBinding)
     {
         global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr(this.Handle, Selector.GetHandle("bluetoothReader:didReturnResponseApdu:error:"), bluetoothReader.Handle, apdu.Handle, error.Handle);
     }
     else
     {
         global::ApiDefinitions.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr_IntPtr(this.SuperHandle, Selector.GetHandle("bluetoothReader:didReturnResponseApdu:error:"), bluetoothReader.Handle, apdu.Handle, error.Handle);
     }
 }
Example #6
0
 public virtual void DidReturnDeviceInfo(ABTBluetoothReader bluetoothReader, NSObject deviceInfo, global::System.nuint type, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (deviceInfo == null)
     {
         throw new ArgumentNullException("deviceInfo");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     if (IsDirectBinding)
     {
         global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_IntPtr_nuint_IntPtr(this.Handle, Selector.GetHandle("bluetoothReader:didReturnDeviceInfo:type:error:"), bluetoothReader.Handle, deviceInfo.Handle, type, error.Handle);
     }
     else
     {
         global::ApiDefinitions.Messaging.void_objc_msgSendSuper_IntPtr_IntPtr_nuint_IntPtr(this.SuperHandle, Selector.GetHandle("bluetoothReader:didReturnDeviceInfo:type:error:"), bluetoothReader.Handle, deviceInfo.Handle, type, error.Handle);
     }
 }
 public static void DidDetectReader(this IABTBluetoothReaderManagerDelegate This, ABTBluetoothReaderManager bluetoothReaderManager, ABTBluetoothReader reader, global::CoreBluetooth.CBPeripheral peripheral, NSError error)
 {
     if (bluetoothReaderManager == null)
     {
         throw new ArgumentNullException("bluetoothReaderManager");
     }
     if (reader == null)
     {
         throw new ArgumentNullException("reader");
     }
     if (peripheral == null)
     {
         throw new ArgumentNullException("peripheral");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_IntPtr_IntPtr_IntPtr(This.Handle, Selector.GetHandle("bluetoothReaderManager:didDetectReader:peripheral:error:"), bluetoothReaderManager.Handle, reader.Handle, peripheral.Handle, error.Handle);
 }
 public virtual void DidDetectReader(ABTBluetoothReaderManager bluetoothReaderManager, ABTBluetoothReader reader, global::CoreBluetooth.CBPeripheral peripheral, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
 public static void DidChangeCardStatus(this IABTBluetoothReaderDelegate This, ABTBluetoothReader bluetoothReader, global::System.nuint cardStatus, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_nuint_IntPtr(This.Handle, Selector.GetHandle("bluetoothReader:didChangeCardStatus:error:"), bluetoothReader.Handle, cardStatus, error.Handle);
 }
 public static void DidReturnDeviceInfo(this IABTBluetoothReaderDelegate This, ABTBluetoothReader bluetoothReader, NSObject deviceInfo, global::System.nuint type, NSError error)
 {
     if (bluetoothReader == null)
     {
         throw new ArgumentNullException("bluetoothReader");
     }
     if (deviceInfo == null)
     {
         throw new ArgumentNullException("deviceInfo");
     }
     if (error == null)
     {
         throw new ArgumentNullException("error");
     }
     global::ApiDefinitions.Messaging.void_objc_msgSend_IntPtr_IntPtr_nuint_IntPtr(This.Handle, Selector.GetHandle("bluetoothReader:didReturnDeviceInfo:type:error:"), bluetoothReader.Handle, deviceInfo.Handle, type, error.Handle);
 }
 public virtual void DidReturnResponseApdu(ABTBluetoothReader bluetoothReader, NSData apdu, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
 public virtual void DidReturnDeviceInfo(ABTBluetoothReader bluetoothReader, NSObject deviceInfo, global::System.nuint type, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
 public virtual void DidReturnCardStatus(ABTBluetoothReader bluetoothReader, global::System.nuint cardStatus, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
 public virtual void DidPowerOffCardWithError(ABTBluetoothReader bluetoothReader, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
 public virtual void DidChangeBatteryStatus(ABTBluetoothReader bluetoothReader, global::System.nuint batteryStatus, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }
 public virtual void DidAuthenticateWithError(ABTBluetoothReader bluetoothReader, NSError error)
 {
     throw new You_Should_Not_Call_base_In_This_Method();
 }