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

18 lines
404 B
C#
Raw Normal View History

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