private void Manager_DeviceJoined(object sender, AllJoynClientLib.Devices.DeviceClient e)
 {
     ExecuteOnUIThread(() =>
     {
         clients.Add(e);
     });
 }
Example #2
0
 private void Manager_DeviceDropped(object sender, AllJoynClientLib.Devices.DeviceClient e)
 {
     ExecuteOnUIThread(() =>
     {
         clients.Remove(e);
     });
 }