HttpVerbs Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumerates the HTTP verbs.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum HttpVerbs
type HttpVerbs =
Public Enum HttpVerbs
- Inheritance
-
HttpVerbs
- Attributes
Fields
Name | Value | Description |
---|---|---|
Get | 1 | Retrieves the information or entity that is identified by the URI of the request. |
Post | 2 | Posts a new entity as an addition to a URI. |
Put | 4 | Replaces an entity that is identified by a URI. |
Delete | 8 | Requests that a specified URI be deleted. |
Head | 16 | Retrieves the message headers for the information or entity that is identified by the URI of the request. |
Patch | 32 | Requests that a set of changes described in the request entity be applied to the resource identified by the Request- URI. |
Options | 64 | Represents a request for information about the communication options available on the request/response chain identified by the Request-URI. |