5 | %language ElabReflection
7 | ||| An enumeration of HTTP request methods.
11 | ||| Requests a representation of the specified resource.
12 | ||| GET requests should not contain a request body.
15 | ||| Requests the metadata of a resource. This is typically sent
16 | ||| instead of a `GET` request, for instance to determine the
17 | ||| `Content-Size` of a resource.
20 | ||| Submits some data to the specified resource, often resulting
21 | ||| in a change of the server state.
24 | ||| Creates a new resource or replaces an existing resource with
25 | ||| the request content. Unlike `POST`, `PUT` requests are supposed
26 | ||| to be idempotent.
29 | ||| Asks the HTTP server to delete a specified resource.
32 | ||| Applies a partial modification to a resource.