Exemplo n.º 1
0
 void _cpManager_AddedCommuniPort(object sender, CommuniPortEventArgs e)
 {
     StationCommuniPortBinder.Bind(e.CommuniPort, this.GetHardware());
 }
Exemplo n.º 2
0
 void _cpManager_ClosedCommuniPort(object sender, CommuniPortEventArgs e)
 {
     // do nothing
     //
 }
Exemplo n.º 3
0
        void _cpManager_ReceivedCommuniPort(object sender, CommuniPortEventArgs e)
        {
            ICommuniPort cp = e.CommuniPort;

            ProcessReceived(cp);
        }
Exemplo n.º 4
0
 void _cpManager_DeterminedCommuniPort(object sender, CommuniPortEventArgs e)
 {
     ProcessDetermined(e.CommuniPort);
 }
Exemplo n.º 5
0
        void _cpManager_RemovedCommuniPort(object sender, CommuniPortEventArgs e)
        {
            ICommuniPort cp = e.CommuniPort;

            StationCommuniPortBinder.Unbind(cp, GetHardware());
        }