FSSHTTPandWOPIInspector.Parsers.FileChunkReference.Parse C# (CSharp) Метод

Parse() публичный Метод

Parse the FileChunkReference structure.
public Parse ( Stream s ) : void
s Stream An stream containing FileChunkReference structure.
Результат void
        public override void Parse(Stream s)
        {
            base.Parse(s);
            this.Start = new CompactUnsigned64bitInteger();
            this.Start = this.Start.TryParse(s);
            this.Length = new CompactUnsigned64bitInteger();
            this.Length = this.Length.TryParse(s);
        }
FileChunkReference