Esempio n. 1
0
 static void HandleChannelOpened(IOBluetoothRFCOMMChannel newChannel)
 {
     if (ChannelOpened != null)
     {
         ChannelOpened(null, new ChannelOpenedEventArgs(newChannel));
     }
 }
Esempio n. 2
0
 void OnChannelOpened(IOBluetoothUserNotification notification, IOBluetoothRFCOMMChannel newChannel)
 {
     handleChannelOpened(newChannel);
 }
Esempio n. 3
0
 public ChannelOpenedEventArgs(IOBluetoothRFCOMMChannel channel)
 {
     Channel = channel;
 }
Esempio n. 4
0
			void OnChannelOpened (IOBluetoothUserNotification notification, IOBluetoothRFCOMMChannel newChannel)
			{
				handleChannelOpened (newChannel);
			}
Esempio n. 5
0
			public ChannelOpenedEventArgs (IOBluetoothRFCOMMChannel channel)
			{
				Channel = channel;
			}
Esempio n. 6
0
		static void HandleChannelOpened (IOBluetoothRFCOMMChannel newChannel)
		{
			if (ChannelOpened != null)
				ChannelOpened (null, new ChannelOpenedEventArgs (newChannel));
		}