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

19 lines
419 B
C#
Raw Permalink Normal View History

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