I have the following code:
session = ResourceManager.GetLocalManager().Open(CurrentSession);
CurrentSerialSession = session as SerialSession;
which opens com1 @ 9600 baud, no parity, 1 stop bit, etc.
 
If I want to close this and free up the serial port for other applications would I do this:
session.Dispose();
 
I have tried this as well as CurrentSerialSession.Dispose(); to no avail. How do I close the serial port once
I have opened it?
Thanks,
Barry