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