Vec posle prve pretrage msdn biblioteke za Event PinChanged pronasao sam ono sto mi treba. U odgovoru postavljam link... ako se jos neko nadje u sl. situaciji kao ja :0.
MSDN Library - C# PinChanged Enumeration
Primer za primenu clanova moze da bude napisan ovako...
Code:
c# SerialPort PinChanged event handling
in_port.PinChanged += new SerialPinChangedEventHandler(port_PinChanged);
static void port_PinChanged(object sender, SerialPinChangedEventArgs e)
{
if (e.EventType == SerialPinChange.Break)
{
//
}
else if (e.EventType == SerialPinChange.CDChanged)
{
//
}
else if (e.EventType == SerialPinChange.CtsChanged)
{
//
}
else if (e.EventType == SerialPinChange.DsrChanged)
{
//
}
else if (e.EventType == SerialPinChange.Ring)
{
//
}
}
Code:
opis clanova
.CtsChanged
The Clear to Send (CTS) signal changed state.
This signal is used to indicate whether data can be sent over the serial port.
.DsrChanged
The Data Set Ready (DSR) signal changed state.
This signal is used to indicate whether the device on the serial port is ready to operate.
.CDChanged
The Carrier Detect (CD) signal changed state.
This signal is used to indicate whether a modem is connected to a working phone line and a data carrier signal is detected.
.Ring
A ring indicator was detected.
.Break
A break was detected on input.
mish_ns puno hvala na pomoci

. Ja bih se najverovatnije bez tvoje pomoci 1-2 meseca rasturio od citanja dokumentacije SerialPort kontrole, dok ne bih dosao do informacija koje su mi potrebne da napisem resenje za problem koji imam. Tnx!!!
[Ovu poruku je menjao unisoft dana 02.08.2012. u 14:23 GMT+1]