22 lines
296 B
C#
22 lines
296 B
C#
|
//
|
||
|
// System.IO.Ports.Handshake.cs
|
||
|
//
|
||
|
// Authors:
|
||
|
// Chris Toshok (toshok@ximian.com)
|
||
|
//
|
||
|
// (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
|
||
|
//
|
||
|
|
||
|
namespace System.IO.Ports
|
||
|
{
|
||
|
public enum Handshake
|
||
|
{
|
||
|
None,
|
||
|
XOnXOff,
|
||
|
RequestToSend,
|
||
|
RequestToSendXOnXOff
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|