public Stream GetObjectStream(string bucketName, string key, long from) { return(client.GetObjectStream(bucketName, key, from)); }
public Task <Stream> Get(string bucket, string key) { CheckBucket(bucket); return(Task.Factory.StartNew(() => Service.GetObjectStream(bucket, key))); }