Top "Gzipstream" questions

GZipStream is a .NET 2.0+ class for compression and decompression using gzip format.

Why does my C# gzip produce a larger file than Fiddler or PHP?

If I GZip this text: Hello World through C# using this code: Stream stream = new MemoryStream(Encoding.Default.GetBytes("Hello …

c# gzip fiddler gzipstream
Sending gzipped data in WebRequest?

I have a large amount of data (~100k) that my C# app is sending to my Apache server with mod_…

c# gzip webrequest gzipstream
Gzip compression not working ASP.net MVC5

I want to compress my web application with Gzip and I am using following class compression filter public class CompressFilter : …

asp.net-mvc asp.net-mvc-5 compression gzip gzipstream
How to compress multiple files in a GZip file with the GZipStream class?

I am simply looking for a way to compress multiple files in a GZip file with the GZipStream class. Anybody …

.net gzipstream
Why does C# memory stream reserve so much memory?

Our software is decompressing certain byte data through a GZipStream, which reads data from a MemoryStream. These data are decompressed …

c# memory memory-management memorystream gzipstream
How to create a zip file using encoded string in C#

I'm new to C# and using C#.Net 2.0 with Visual Studio 2005. How can I create a zip file from a …

c# gzipstream
GZipStream on large data

I am attempting to compress a large amount of data, sometimes in the region of 100GB, when i run the …

c# gzipstream
C# to Java: Base64String, MemoryStream, GZipStream

I have a Base64 string that's been gzipped in .NET and I would like to convert it back into a …

c# java memorystream gzipstream gzipinputstream
Unzipping a File in vb.net

I have an embedded resource in my .exe that is a zip file, I would like to move it out …

vb.net gzipstream