Enum RestRequestMethod
- Namespace
- DisCatSharp.Net
- Assembly
- DisCatSharp.dll
Defines the HTTP method to use for an HTTP request.
public enum RestRequestMethod
Fields
GET = 0
Defines that the request is a GET request.
POST = 1
Defines that the request is a POST request.
DELETE = 2
Defines that the request is a DELETE request.
PATCH = 3
Defines that the request is a PATCH request.
PUT = 4
Defines that the request is a PUT request.
HEAD = 5
Defines that the request is a HEAD request.