I am trying to decompress a json gzipped stream in silverlight and serialize the stream into an object. I have the serialization down with an uncompressed stream but when receiving the same stream compressed it doesn’t work. I know that there is a GZipStream for c# but it isn’t supported by silverlight. Does anyone know of a good library? I can’t seem to find one.
Share
ShapZipLib now has a silverlight library so you can use GZipStream in silverlight.
Stream stream = new GZipInputStream(response.GetResponseStream());