Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Alberto Cortez <calberto.cortez@gmail.com>2006-02-15 11:05:29 +0300
committerCarlos Alberto Cortez <calberto.cortez@gmail.com>2006-02-15 11:05:29 +0300
commita9e25ebf3621fcc69fa544fb951a3a26e9dc0aea (patch)
tree649719d847e98c3be3c8572f48f2ba6f726d10cc /mcs/class/System/System.IO.Ports/Handshake.cs
parent57a695063cf930a92cccb6ab1c753d36ecd2bc85 (diff)
2006-02-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* SerialPort.cs: Little work on default values and exception report. * Parity.cs: * Handshake.cs: * StopBits.cs: New enum files (taken outside SerialPort and with the right values now). svn path=/trunk/mcs/; revision=56885
Diffstat (limited to 'mcs/class/System/System.IO.Ports/Handshake.cs')
-rw-r--r--mcs/class/System/System.IO.Ports/Handshake.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/mcs/class/System/System.IO.Ports/Handshake.cs b/mcs/class/System/System.IO.Ports/Handshake.cs
new file mode 100644
index 00000000000..a03cf23f7f0
--- /dev/null
+++ b/mcs/class/System/System.IO.Ports/Handshake.cs
@@ -0,0 +1,24 @@
+//
+// System.IO.Ports.Handshake.cs
+//
+// Authors:
+// Chris Toshok (toshok@ximian.com)
+//
+// (c) Copyright 2006 Novell, Inc. (http://www.novell.com)
+//
+
+#if NET_2_0
+
+namespace System.IO.Ports
+{
+ public enum Handshake
+ {
+ None,
+ XOnXOff,
+ RequestToSend,
+ RequestToSendXOnXOff
+ }
+}
+
+#endif
+