OpenRead() public method

Returns a Stream for reading the contents of the file.
The file is already open.
public OpenRead ( ) : Stream
return Stream
        public Stream GetObjectStream(string path)
        {
            path = CleanPath(path);
            var file = new S3FileInfo(_client, _amazonS3StorageConfiguration.AWSFileBucket, path);

            return file.OpenRead();
            //return Download(path);
        }