예제 #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
 private void ReadFooter()
 {
     Footer = XZFooter.FromStream(BaseStream);
     // TODO verify footer
 }