using System; using System.Collections.Generic; using System.Text; /** * Copyright (c) 2018 Tencent Cloud. All rights reserved. * 11/2/2018 2:42:24 PM * bradyxiao */ namespace COSXML.Common { public sealed class CosRequestMethod { public const string GET = "GET"; public const string POST = "POST"; public const string PUT = "PUT"; public const string DELETE = "DELETE"; public const string HEAD = "HEAD"; public const string OPTIONS = "OPTIONS"; } }