Files
g.hnyhua.cn/COSXML/Model/Bucket/GetBucketDomainRequest.cs
2026-02-07 15:48:27 +08:00

19 lines
439 B
C#

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);
}
}
}