Files
RenyiServer/COSXML/Model/Bucket/GetBucketReplicationRequest.cs
2026-03-09 00:13:46 +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);
}
}
}