Enum HttpVerbs
Enumerates the HTTP verbs.
[Flags]
public enum HttpVerbs
Fields
Delete = 8Requests that a specified URI be deleted.
Get = 1Retrieves the information or entity that is identified by the URI of the request.
Head = 16Retrieves the message headers for the information or entity that is identified by the URI of the request.
Options = 64Represents a request for information about the communication options available on the request/response chain identified by the Request-URI.
Patch = 32Requests that a set of changes described in the request entity be applied to the resource identified by the Request- URI.
Post = 2Posts a new entity as an addition to a URI.
Put = 4Replaces an entity that is identified by a URI.