{
  "WorkItem": {
    "AffectedComponent": {
      "Name": "",
      "DisplayName": ""
    },
    "ClosedComment": "",
    "ClosedDate": null,
    "CommentCount": 0,
    "Custom": null,
    "Description": "Hello, \n \nI'm trying to use DotNetZip to create a compression sink for my .Net application.\n \nThe problem is that the following lines will fail because the stream in .Net Remoting is non-seekable\n \npublic static Stream getUncompressedStreamCopy(Stream inStream)\n{\n   Ionic.Zip.ZipInputStream unCompressStream = new Ionic.Zip.ZipInputStream(inStream);\n   unCompressStream.GetNextEntry();\n   MemoryStream outStream = new MemoryStream();\n   int mSize;\n   Byte[] mWriteData = new Byte[4096];\n   while (true)\n   {\n      mSize = unCompressStream.Read(mWriteData, 0, mWriteData.Length);\n      if (mSize > 0)\n      {\n         outStream.Write(mWriteData, 0, mSize);\n      }\n      else\n      {\n         break;\n      }\n   }\n   unCompressStream.Close();\n   outStream.Seek(0, SeekOrigin.Begin);\n   return outStream;\n}\n \nThe exception thrown is \"Specified method is not supported.\"\n \nLet me know if you need more information.\n \nRegards,\nAurélien",
    "LastUpdatedDate": "2013-02-21T18:42:56.51-08:00",
    "PlannedForRelease": "",
    "ReleaseVisibleToPublic": false,
    "Priority": {
      "Name": "Low",
      "Severity": 50,
      "Id": 1
    },
    "ProjectName": "DotNetZip",
    "ReportedDate": "2012-01-31T06:22:27.73-08:00",
    "Status": {
      "Name": "Proposed",
      "Id": 1
    },
    "ReasonClosed": {
      "Name": "Unassigned"
    },
    "Summary": "GetNextEntry in ZipInputStream doesn't work with non-seekable stream",
    "Type": {
      "Name": "Issue",
      "Id": 3
    },
    "VoteCount": 1,
    "Id": 14711
  },
  "FileAttachments": [],
  "Comments": []
}