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-05-13 00:18:55 +0400
committerCarlos Alberto Cortez <calberto.cortez@gmail.com>2006-05-13 00:18:55 +0400
commit98fe6e1118f6d030cea14d0106da0eda7dfd69ef (patch)
tree420d67389cd7fe695ce23b24b649078940386d2f /mcs/class/System/System.IO.Ports/SerialPortStream.cs
parentf87c5219f8383fdeb1126b56657c4d53ed54b316 (diff)
2005-05-12 Carlos Alberto Cortez <calberto.cortez@gmail.com>
* ISerialStream.cs: Add support for break state. * SerialPort.cs: Likewise. * WinSerialStream.cs: Add support for break state and some other bits (BytesToRead, BytesToWrite, DsrHolding, CDHolding, CtsHolding, DiscardIn, DiscardOut). * SerialPortStream.cs: Add a SetBreak function to implement the updated ISerialStream interface (not implemented by now). svn path=/trunk/mcs/; revision=60663
Diffstat (limited to 'mcs/class/System/System.IO.Ports/SerialPortStream.cs')
-rw-r--r--mcs/class/System/System.IO.Ports/SerialPortStream.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/mcs/class/System/System.IO.Ports/SerialPortStream.cs b/mcs/class/System/System.IO.Ports/SerialPortStream.cs
index 88f7ff0e5c7..62df786b337 100644
--- a/mcs/class/System/System.IO.Ports/SerialPortStream.cs
+++ b/mcs/class/System/System.IO.Ports/SerialPortStream.cs
@@ -259,6 +259,11 @@ namespace System.IO.Ports
throw new IOException ();
}
+ public void SetBreakState (bool value)
+ {
+ throw new NotImplementedException ();
+ }
+
}
}