GetBucketReplicationRequest.cs 416 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using COSXML.Common;
  5. namespace COSXML.Model.Bucket
  6. {
  7. public sealed class GetBucketReplicationRequest : BucketRequest
  8. {
  9. public GetBucketReplicationRequest(string bucket)
  10. : base(bucket)
  11. {
  12. this.method = CosRequestMethod.GET;
  13. this.queryParameters.Add("replication", null);
  14. }
  15. }
  16. }