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

19 lines
419 B
C#

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