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