Tagged Questions
0
votes
1answer
485 views
GZipStream 4G limit - total or currently streaming?
Have aa GzipStream feeding an SSLStream.
First time today noticed
"The gzip stream can't contain more than 4GB data."
at System.IO.Compression.FastEncoder.GetCompressedOutput(Byte[] outputBuffer)
at ...
0
votes
2answers
477 views
C# SslStream with GZipStream
Is it possible to use GZipStream passing an SslStream in C#? i.e. can you do
GZipStream stream = new GZipStream(sslStream, CompressionMode.Compress);
stream.Write(...);
...
GZipStream stream = new ...