Initial commit

This commit is contained in:
Ebrahim Byagowi
2012-03-03 13:20:54 +03:30
commit 849cb8865a
26 changed files with 1825 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
namespace PInvokeSerialPort
{
/// <summary>
/// Standard handshake methods
/// </summary>
public enum Handshake
{
/// <summary>
/// No handshaking
/// </summary>
None,
/// <summary>
/// Software handshaking using Xon / Xoff
/// </summary>
XonXoff,
/// <summary>
/// Hardware handshaking using CTS / RTS
/// </summary>
CtsRts,
/// <summary>
/// Hardware handshaking using DSR / DTR
/// </summary>
DsrDtr
}
}