12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- /*
- * Copyright (C) Alibaba Cloud Computing
- * All rights reserved.
- *
- * 版权所有 (C)阿里云计算有限公司
- */
- using System;
- using Aliyun.OSS.Common.Communication;
- using Aliyun.OSS.Util;
- namespace Aliyun.OSS.Commands
- {
- internal class CreateBucketCommand : OssCommand
- {
- private readonly string _bucketName;
- protected override HttpMethod Method
- {
- get { return HttpMethod.Put; }
- }
- protected override string Bucket
- {
- get { return _bucketName; }
- }
- private CreateBucketCommand(IServiceClient client, Uri endpoint, ExecutionContext context,
- string bucketName)
- : base(client, endpoint, context)
- {
- OssUtils.CheckBucketName(bucketName);
- _bucketName = bucketName;
- }
- public static CreateBucketCommand Create(IServiceClient client, Uri endpoint,
- ExecutionContext context,
- string bucketName)
- {
- return new CreateBucketCommand(client, endpoint, context, bucketName);
- }
- }
- }
|