首次推送
This commit is contained in:
21
COSXML/Common/CosRequestMethod.cs
Normal file
21
COSXML/Common/CosRequestMethod.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user