Fix set of public Handshake interface to remove circular reference.

This commit is contained in:
Thomas Wachter 2017-02-14 09:20:00 -05:00
parent ba181b8206
commit 90ad497d35

View File

@ -709,8 +709,8 @@ namespace PInvokeSerialPort
get { return _handShake; }
set
{
Handshake = value;
switch (Handshake)
_handShake = value;
switch (_handShake)
{
case Handshake.None:
TxFlowCts = false; TxFlowDsr = false; TxFlowX = false;