Example #1
0
 void alertClient_ServiceClose(AlertClient sender)
 {
     Action action = () =>
     {
         sender.Close();
         _manager.Remove(sender);
     };
     this.BeginInvoke(action);
 }