Ejemplo n.º 1
0
        void _cpManager_AddedCommuniPort(object sender, CommuniPortEventArgs e)
        {
            Client c = new Client(e.CommuniPort);

            this._clientManager.Add(c);
        }
Ejemplo n.º 2
0
 void _cpManager_ClosedCommuniPort(object sender, CommuniPortEventArgs e)
 {
     //throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 void _communiPortManager_AddedCommuniPort(object sender, CommuniPortEventArgs e)
 {
     this.ClientManager.Add(new Client(e.CommuniPort));
 }
Ejemplo n.º 4
0
 void _cpManager_RemovedCommuniPort(object sender, CommuniPortEventArgs e)
 {
     this._clientManager.RemoveByCommuniPort(e.CommuniPort);
 }
Ejemplo n.º 5
0
 void _communiPortManager_ClosedCommuniPort(object sender, CommuniPortEventArgs e)
 {
     // do nothing
     //
 }