LitS3.S3Service.GetObjectStream C# (CSharp) 메소드

GetObjectStream() 공개 메소드

Gets a data stream for an existing object in S3. It is your responsibility to close the Stream when you are finished.
public GetObjectStream ( string bucketName, string key ) : Stream
bucketName string
key string
리턴 Stream
        public Stream GetObjectStream(string bucketName, string key)
        {
            long contentLength;
            string contentType;
            return GetObjectStream(bucketName, key, out contentLength, out contentType);
        }

Same methods

S3Service::GetObjectStream ( string bucketName, string key, long &contentLength, string &contentType ) : Stream