Exemple #1
0
 public IOBluetoothL2CAPChannel OpenL2CAPChannelAsync(
     BluetoothL2CAPPSM psm,
     NSDictionary channelConfiguration,
     IOBluetoothL2CAPChannelDelegate channelDelegate)
 {
     return(OpenL2CAPChannelAsync(psm, channelConfiguration, (NSObject)channelDelegate));
 }
Exemple #2
0
		public IOBluetoothL2CAPChannel OpenL2CAPChannel (
			BluetoothL2CAPPSM psm = BluetoothL2CAPPSM.None,
			NSObject channelDelegate = null)
		{
			IOBluetoothL2CAPChannel newChannel;
			var result = openL2CAPChannelSync (out newChannel, psm, channelDelegate);
			IOObject.ThrowIfError (result);
			newChannel.Release ();
			return newChannel;
		}
Exemple #3
0
        public IOBluetoothL2CAPChannel OpenL2CAPChannelAsync(
            BluetoothL2CAPPSM psm    = BluetoothL2CAPPSM.None,
            NSObject channelDelegate = null)
        {
            IOBluetoothL2CAPChannel newChannel;
            var result = openL2CAPChannelAsync(out newChannel, psm, channelDelegate);

            IOObject.ThrowIfError(result);
            newChannel.Release();
            return(newChannel);
        }
Exemple #4
0
        public IOBluetoothL2CAPChannel OpenL2CAPChannelAsync(
            BluetoothL2CAPPSM psm,
            NSDictionary channelConfiguration,
            NSObject channelDelegate = null)
        {
            IOBluetoothL2CAPChannel newChannel;
            var result = openL2CAPChannelAsync(out newChannel, psm, channelConfiguration, channelDelegate);

            IOObject.ThrowIfError(result);
            return(newChannel);
        }
Exemple #5
0
 public IOBluetoothL2CAPChannel OpenL2CAPChannel(
     BluetoothL2CAPPSM psm,
     IOBluetoothL2CAPChannelDelegate channelDelegate)
 {
     return(OpenL2CAPChannel(psm, (NSObject)channelDelegate));
 }
Exemple #6
0
		public IOBluetoothL2CAPChannel OpenL2CAPChannelAsync (
			BluetoothL2CAPPSM psm,
			IOBluetoothL2CAPChannelDelegate channelDelegate)
		{
			return OpenL2CAPChannelAsync (psm, (NSObject)channelDelegate);
		}
Exemple #7
0
		public IOBluetoothL2CAPChannel OpenL2CAPChannelAsync (
			BluetoothL2CAPPSM psm,
			NSDictionary channelConfiguration,
			IOBluetoothL2CAPChannelDelegate channelDelegate)
		{
			return OpenL2CAPChannelAsync (psm, channelConfiguration, (NSObject)channelDelegate);
		}
Exemple #8
0
		public IOBluetoothL2CAPChannel OpenL2CAPChannelAsync (
			BluetoothL2CAPPSM psm,
			NSDictionary channelConfiguration,
			NSObject channelDelegate = null)
		{
			IOBluetoothL2CAPChannel newChannel;
			var result = openL2CAPChannelAsync (out newChannel, psm, channelConfiguration, channelDelegate);
			IOObject.ThrowIfError (result);
			return newChannel;
		}