Show / Hide Table of Contents

Class HttpConsts

HTTP constants.

Inheritance
System.Object
HttpConsts
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Http
Assembly: Google.Apis.Core.dll
Syntax
public static class HttpConsts

Fields

Delete

Http DELETE request

Declaration
public const string Delete = "DELETE"
Field Value
Type Description
System.String

Get

Http GET request

Declaration
public const string Get = "GET"
Field Value
Type Description
System.String

Patch

Http PATCH request

Declaration
public const string Patch = "PATCH"
Field Value
Type Description
System.String

Post

Http POST request

Declaration
public const string Post = "POST"
Field Value
Type Description
System.String

Put

Http PUT request

Declaration
public const string Put = "PUT"
Field Value
Type Description
System.String
In This Article
Back to top