コード例 #1
0
        public static XZFooter FromStream(Stream stream)
        {
            var footer = new XZFooter(new BinaryReader(stream, Encoding.UTF8, true));

            footer.Process();
            return(footer);
        }
コード例 #2
0
ファイル: XZFooter.cs プロジェクト: sambott/XZ.NET
 public static XZFooter FromStream(Stream stream)
 {
     var footer = new XZFooter(new BinaryReader(stream, Encoding.UTF8, true));
     footer.Process();
     return footer;
 }
コード例 #3
0
ファイル: XZStream.cs プロジェクト: markusmobius/XZ.NET-1
 private void ReadFooter()
 {
     Footer = XZFooter.FromStream(BaseStream);
     // TODO verify footer
 }