Patcher.Data.Archives.ArchiveReader.GetFileStream C# (CSharp) Method

GetFileStream() public method

public GetFileStream ( string path ) : Stream
path string
return Stream
        public Stream GetFileStream(string path)
        {
            if (!opened)
                throw new InvalidOperationException("Archive not opened");

            return DoGetFileStream(path);
        }