1234567891011121314151617 |
- using COSXML.Common;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace COSXML.Model.Bucket
- {
- public sealed class PutBucketPolicyRequest : BucketRequest
- {
- public PutBucketPolicyRequest(string bucket)
- : base(bucket)
- {
- this.method = CosRequestMethod.PUT;
- this.queryParameters.Add("policy ", null);
- }
- }
- }
|