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

17 lines
394 B
C#
Raw Permalink Normal View History

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