19 lines
439 B
C#
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);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|