Files
g.hnyhua.cn/COSXML/Model/Bucket/GetBucketDomainRequest.cs

19 lines
439 B
C#
Raw Normal View History

using COSXML.Common;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace COSXML.Model.Bucket
{
public sealed class GetBucketDomainRequest :BucketRequest
{
public GetBucketDomainRequest(string bucket) : base(bucket)
{
this.method = CosRequestMethod.GET;
this.queryParameters.Add("domain", null);
}
}
}