docs/Enums/HTTPMethod.html
public enum HTTPMethod : String
HTTP method definitions.
See https://tools.ietf.org/html/rfc7231#section-4.3
`
connect
`
CONNECT method.
Swift
case connect = "CONNECT"
`
delete
`
DELETE method.
Swift
case delete = "DELETE"
`
get
`
GET method.
Swift
case get = "GET"
`
head
`
HEAD method.
Swift
case head = "HEAD"
`
options
`
OPTIONS method.
Swift
case options = "OPTIONS"
`
patch
`
PATCH method.
Swift
case patch = "PATCH"
`
post
`
POST method.
Swift
case post = "POST"
`
put
`
PUT method.
Swift
case put = "PUT"
`
trace
`
TRACE method.
Swift
case trace = "TRACE"