OpenRead() 공개 메소드

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

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