DeleteBucketRequest.cs 461 B

123456789101112131415161718192021
  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 DeleteBucketRequest : BucketRequest
  8. {
  9. /// <summary>
  10. /// 删除 空 Bucket
  11. /// </summary>
  12. /// <param name="bucket"></param>
  13. public DeleteBucketRequest(string bucket)
  14. : base(bucket)
  15. {
  16. this.method = CosRequestMethod.DELETE;
  17. }
  18. }
  19. }