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
AgeCommit message (Collapse)Author
2008-09-152007-09-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* WinSerialStream.cs: Fix the signature of ClearCommError. Fixes #348751. svn path=/trunk/mcs/; revision=112973
2008-09-142008-09-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Throw ArgumentException if NewLine gets an empty string value. Fixes #339012. svn path=/trunk/mcs/; revision=112964
2008-09-082008-09-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: In BaseStream property call CheckOpen instead of duplicating the code. svn path=/trunk/mcs/; revision=112498
2008-02-202008-02-19 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPortStream.cs: Set DllImport.SetLastError to true for all MonoPosixHelper functions, so in case of error we can retrieve the error and print a simple but effective message about it. svn path=/trunk/mcs/; revision=96216
2007-12-032007-12-03 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* SerialPort.cs: Apply patch from Martin Green <martin@martsoft.co.uk> to support Serial Ports enumeration on Windows. svn path=/trunk/mcs/; revision=90583
2007-11-132007-11-13 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* SerialPort.cs : Added [DefaultValue]. For PortName it is useless though. Do not use ObsoleteAttribute for MonoTODO role. svn path=/trunk/mcs/; revision=89534
2007-11-052007-11-05 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* SerialPort.cs: Cope with multi-character newlines. Fixes #321988. svn path=/trunk/mcs/; revision=88869
2007-10-142007-10-13 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* SerialPortStream.cs: Send a break on the Unix case. svn path=/trunk/mcs/; revision=87453
2007-08-12Second part of fix for bug #81967Miguel de Icaza
2007-08-12 Lukasz Byczynski <lukaszb@forcom.com.pl> * SerialPortStream.cs: added timeout handling on write * WinSerialStream.cs: fixed setting handshake flags svn path=/trunk/mcs/; revision=83922
2007-07-022007-07-01 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Don't throw ArgumentOutOfRangeException when the buffer has Length = 0 (and has the appropriate arguments). svn path=/trunk/mcs/; revision=81151
2007-05-212007-05-21 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* SerialPort.cs : slightly boring 2.0 attributes. svn path=/trunk/mcs/; revision=77737
2007-05-012007-05-01 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* WinSerialStream.cs: Fix build due to NativeOverlapped being updated to 2.0 definition (int to IntPtr). svn path=/trunk/mcs/; revision=76535
2007-04-11Wed Apr 11 15:40:55 CEST 2007 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* WinSerialStream.cs: fixed logic for signal value check (bug #81342). svn path=/trunk/mcs/; revision=75610
2006-11-182006-11-18 Jelle Hissink <Jelle.Hissink@C-it.nl>Miguel de Icaza
* SerialPortStream.cs: Fix the parameters in Read, and also poll before the read, so we can thorw the TimeoutException. svn path=/trunk/mcs/; revision=68125
2006-09-28TARGET_JVMAndrew Skiba
svn path=/trunk/mcs/; revision=66027
2006-08-16oopsGonzalo Paniagua Javier
svn path=/trunk/mcs/; revision=63791
2006-08-162006-08-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* SerialPort.cs: allow settings StopBits.None. svn path=/trunk/mcs/; revision=63790
2006-08-142006-08-14 Chris Toshok <toshok@ximian.com>Chris Toshok
* SerialPort.cs: the paths returned by Directory.GetFiles have the directory at the beginning of the string. svn path=/trunk/mcs/; revision=63725
2006-08-142006-08-13 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* SerialPort.cs (ReadTo): Implemented. Add a couple of missing checks. svn path=/trunk/mcs/; revision=63694
2006-08-142006-08-13 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* SerialPort.cs: Also handle ttyUSB for Chris. svn path=/trunk/mcs/; revision=63692
2006-08-142006-08-13 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* SerialPortStream.cs (BytesToRead, BytesToWrite): Implement. * SerialPort.cs (ReadByte): Go directly to the stream, no need to call the wrapper code. (ReadChar): implement. (ReadLine): implement. Add DefaultValueAttributes to various methods. * SerialPortStream.cs, WinSerialStream.cs: Use the same checking we use elsewhere for parameters. svn path=/trunk/mcs/; revision=63688
2006-05-132005-05-12 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* 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
2006-05-08 * SerialPort.cs:Carlos Alberto Cortez
* WinSerialStream.cs: Actually plug the Win serial stream in the SerialPort and use it if we are on Windows (use std stream otherwise). 2005-05-08 Carlos Alberto Cortez <calberto.cortez@gmail.com> svn path=/trunk/mcs/; revision=60402
2006-05-082005-05-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* WinSerialStream.cs: Implement some bits needed for the backend thing. svn path=/trunk/mcs/; revision=60400
2006-05-072005-05-06 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* ISerialStream.cs: * SerialPortStream.cs: * SerialPort.cs: * SerialSignal.cs: Some changes to make SerialPorStream implement ISerialInterface, and be able to have OS-depending backends. svn path=/trunk/mcs/; revision=60368
2006-05-062006-05-06 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* ISerialStream.cs: New internal interface used for accessing the backend streams functionality. svn path=/trunk/mcs/; revision=60353
2006-04-212006-04-20 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* WinSerialPort.cs: Inital import of the backend stream for Windows support. svn path=/trunk/mcs/; revision=59729
2006-04-062006-04-06 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: * SerialPortStream.cs: Add signals managing. * SerialSignal.cs: New. svn path=/trunk/mcs/; revision=59130
2006-04-052006-04-05 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Add protected Dispose method, and move the Close stuff there. svn path=/trunk/mcs/; revision=59051
2006-04-042006-04-04 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Re-arrange values for ctors (keep things clean). svn path=/trunk/mcs/; revision=59031
2006-04-032006-04-03 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: * SerialPortStream.cs: Remove the buffers from the SerialPort class, and take them to SerialPortStream. We need them for storing the internal read (pass the buffer sizes to SerialPortStream ctor by now, and use those numbers when we support them). svn path=/trunk/mcs/; revision=58968
2006-03-272006-03-27 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Inherit from Component, and use protected Events property to save the event handlers. Also add internal methods to trigger the events and remove pragmas. svn path=/trunk/mcs/; revision=58580
2006-03-152006-03-15 Miguel de Icaza <miguel@gnome.org>Miguel de Icaza
* SerialPort.cs: We will do detection of systems differently as we discussed over email. Drop malloc/free/uname calls. svn path=/trunk/mcs/; revision=58031
2006-03-152006-03-15 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Add basic detection of serial ports and default serial port. svn path=/trunk/mcs/; revision=57990
2006-03-142006-03-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: * SerialPortStream.cs: Change SerialPortStream ctor parameters and fix some related values. svn path=/trunk/mcs/; revision=57944
2006-03-112006-03-11 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* Uri.cs: Pragma disable warning 612 (Obsolete methods are being used by us internally). Ponder: should we instead move our methods to use new versions of the Obsoleted ones? 2006-03-11 Miguel de Icaza <miguel@novell.com> * CodeNamespaceImportCollection.cs: It turns out that a lot of the errors flagged with "!" were just missing explicit interface implementations. Implement. 2006-03-11 Miguel de Icaza <miguel@novell.com> * CodeDomConfigurationHandler.cs: Comment out unused methods. * TempFileCollection.cs: Implement explicitly some interface methods to get rid of the "!" errors on CorCompare. 2006-03-11 Miguel de Icaza <miguel@novell.com> * Queue.cs: Flag as serializable. * LinkedList.cs (OnDeserialization): Fix signature. * SortedList.cs: Implement explicitly a few methods that were flagged by corcompare. 2006-03-11 Miguel de Icaza <miguel@novell.com> * IOrderedDictionary.cs: Flag GetEnumerator as a "new" method to avoid warning. 2006-03-11 Miguel de Icaza <miguel@novell.com> * ConfigurationSettings.cs (ChangeConfigurationSettings): Make internal to avoid warnings. This routine is called from System.Web with MethodInfo.Invoke. 2006-03-11 Miguel de Icaza <miguel@novell.com> * DeflateStream.cs: Comment out DllImport that was not being used. 2006-03-11 Miguel de Icaza <miguel@novell.com> * y * SerialPort.cs: Remove unused variable (writeBuffer). * SerialPortStream.cs (Dispose): override, not new. 2006-03-11 Miguel de Icaza <miguel@novell.com> * WebClient.cs: Only expose the right methods to avoid warnings. * FtpDataStream.cs (Dispose): Fix signature. * FtpWebResponse.cs: Comment out keepAlive field (unused, sounds like we are missing features here). * IPAddress.cs: Move m_HashCode property to the end, and set pragmas to disable warnings. 2006-03-11 Miguel de Icaza <miguel@novell.com> * MailAddress.cs: Comment out unused field to remove warning. 2006-03-11 Miguel de Icaza <miguel@novell.com> * NetworkChange.cs: Use pragmas to eliminate warnings from events that we do not trigger yet. This is a candidate for using Aaron's NetworkManager code. But would make us depend on d-bus. * NetworkInformationException.cs: Use error_code for ErrorCode, instead of NativeErrorCode. Fixes warning. 2006-03-11 Miguel de Icaza <miguel@novell.com> * AuthenticatedStream.cs: Fixed normative parameter names (yes, we need to do this everywhere one day). (Close): actually obey the "leaveInnerStreamOpen" setting from the constructor. 2006-03-11 Miguel de Icaza <miguel@novell.com> * NetworkStream.cs (Dispose): Use the right signature depending on the profile being built. 2006-03-11 Miguel de Icaza <miguel@novell.com> * X509Chain.cs: Flagged member as internal to avoid unused warning. * X500DistinguishedName.cs: Comment out unused names and move temporary unused variables inside the comments that were removed svn path=/trunk/mcs/; revision=57836
2006-03-092006-03-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: * SerialPortStream.cs: Small advance/cleanups. svn path=/trunk/mcs/; revision=57711
2006-03-022006-02-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: * SerialReceivedEventArgs.cs: * SerialErrorEventArgs.cs: * SerialPinChangedEventArgs.cs: Fix signatures and values related to events. svn path=/trunk/mcs/; revision=57496
2006-02-282006-02-28 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: * SerialPortStream.cs: Cleanups and some small funcionalities added. Also, some code was moved to SerialPortStream, to have a better design. svn path=/trunk/mcs/; revision=57386
2006-02-22 * SerialPort.cs:Carlos Alberto Cortez
* SerialPortStream.cs: Move SerialPortStream to a new file, to have a better organization. 2006-02-21 Carlos Alberto Cortez <calberto.cortez@gmail.com> svn path=/trunk/mcs/; revision=57152
2006-02-222006-02-21 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Little work on support the Read methods. svn path=/trunk/mcs/; revision=57117
2006-02-152006-02-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* 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
2006-02-142006-02-13 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialPort.cs: Work on Encoding property and use it in Write methods. svn path=/trunk/mcs/; revision=56847
2006-02-102006-02-10 Carlos Alberto Cortez <calberto.cortez@gmail.com>Carlos Alberto Cortez
* SerialError.cs: * SerialData.cs: * SerialPinChange.cs: New enums. svn path=/trunk/mcs/; revision=56745
2004-12-262004-12-26 Zoltan Varga <vargaz@freemail.hu>Zoltan Varga
* System.IO.Ports/ChangeLog: New file. svn path=/trunk/mcs/; revision=38093