You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
896 B
47 lines
896 B
/*
|
|
* Copyright (C) Alibaba Cloud Computing
|
|
* All rights reserved.
|
|
*
|
|
* 版权所有 (C)阿里云计算有限公司
|
|
*/
|
|
|
|
using System;
|
|
|
|
namespace Aliyun.Api.LOG.Common.Communication
|
|
{
|
|
/// <summary>
|
|
/// Represents a HTTP method.
|
|
/// </summary>
|
|
internal enum HttpMethod
|
|
{
|
|
/// <summary>
|
|
/// Represents HTTP GET. Default value.
|
|
/// </summary>
|
|
Get = 0,
|
|
|
|
/// <summary>
|
|
/// Represents HTTP DELETE.
|
|
/// </summary>
|
|
Delete,
|
|
|
|
/// <summary>
|
|
/// Represents HTTP HEAD.
|
|
/// </summary>
|
|
Head,
|
|
|
|
/// <summary>
|
|
/// Represents HTTP POST.
|
|
/// </summary>
|
|
Post,
|
|
|
|
/// <summary>
|
|
/// Represents HTTP PUT.
|
|
/// </summary>
|
|
Put,
|
|
|
|
/// <summary>
|
|
/// Represents HTTP OPTIONS.
|
|
/// </summary>
|
|
Options,
|
|
}
|
|
}
|
|
|