Represents the method of an HTTP request.
| Member Name | Description |
|---|---|
| DELETE | The DELETE request type. |
| GET | The GET request type. |
| HEAD | The HEAD request type. May *not* have a body - that is to say that the any body provided in a response to a HEAD request will be ignored. |
| OPTIONS | The OPTIONS request type. |
| PATCH | The PATCH request type. |
| POST | The POST request type. May have a body. |
| PUT | The PUT request type. Probably will have a body. |
| TRACE | The TRACE request type. |