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
2009-07-212009-07-20 Gonzalo Paniagua Javier <gonzalo@novell.com>Gonzalo Paniagua Javier
* GzipStream.cs: fixed Dispose (bool). * DeflateStream.cs: simplify the interface with unmanaged code, big reduction of managaed<->unmanaged round trips. Also fixes bug #523418. svn path=/trunk/mcs/; revision=138252
2007-09-22* DeflateStreamTest.cs: Improved CanRead, CanSeek and CanWrite tests.Gert Driesen
Added test for bug #327480. Code formatting. * GzipStreamTest.cs: Improved CanRead, CanSeek and CanWrite tests. Code formatting. * DeflateStream.cs: Avoid double free. Fixes bug #327480. svn path=/trunk/mcs/; revision=86218
2006-10-222006-10-22 Zoltan Varga <vargaz@gmail.com>Zoltan Varga
* DeflateStream.cs: Throw a more meaningfull exception when zlib initialization fails. svn path=/trunk/mcs/; revision=66884
2006-09-28TARGET_JVMAndrew Skiba
svn path=/trunk/mcs/; revision=66041
2006-09-192006-09-19 Miguel de Icaza <miguel@novell.com>Miguel de Icaza
* GzipStream.cs: Only dispose, do not try to use internal routines. svn path=/trunk/mcs/; revision=65623
2006-04-042006-04-04 Atsushi Enomoto <atsushi@ximian.com>Atsushi Eno
* DeflateStream.cs GzipStream.cs : updated API to 2.0 RTM. Dispose() should certainly release resources than the finalizer. svn path=/trunk/mcs/; revision=58992
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
2005-05-182005-05-18 Sebastien Pouliot <sebastien@ximian.com>Sebastien Pouliot
* DeflateStream.cs: Fixed some changed/missing exceptions. * GzipStream.cs: Renamed to GZipStream (from beta2). svn path=/trunk/mcs/; revision=44714
2004-12-03In Test:Raja R Harinath
* System.IO.Compression/GzipStreamTest.cs: Fix compile errors. * System.IO.Compression/GzipStreamTest.cs: Likewise. In System.IO.Compression: * DeflateStream.cs, GzipStream.cs, CompressionMode.cs: Make class public. svn path=/trunk/mcs/; revision=37025
2004-11-10Ooops.Martin Baulig
svn path=/trunk/mcs/; revision=35952
2004-11-102004-11-10 Martin Baulig <martin@localhost>Martin Baulig
* DeflateStream.cs, GzipStream.cs: `System.IO.Stream.Length' doesn't have any setter. svn path=/trunk/mcs/; revision=35951
2004-10-02Add System.IO.Compression from Chris Lahey (clahey@ximian.com)Miguel de Icaza
svn path=/trunk/mcs/; revision=34610