Exemplo n.º 1
0
        /// <summary>
        /// Gets a stream for reading the contents of this file.
        /// </summary>
        public Stream GetStream()
        {
            var stream = new RiotArchiveFileStream(this.archiveFile, this.dataOffset, this.dataLength);

            stream.Open();
            return(stream);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Gets a stream for reading the contents of this file.
 /// </summary>
 public Stream GetStream()
 {
     var stream = new RiotArchiveFileStream(this.archiveFile, this.dataOffset, this.dataLength);
     stream.Open();
     return stream;
 }