HTTPMethod
public enum HTTPMethod : String, CaseIterable
The HTTP Methods as per W3C consortium standards. https://www.w3.org/Protocols/rfc2616/rfc2616-sec9.html
-
The GET method.
Declaration
Swift
case GET
-
The POST method.
Declaration
Swift
case POST
-
The DELETE method.
Declaration
Swift
case DELETE
-
The HEAD method.
Declaration
Swift
case HEAD
-
The PUT method.
Declaration
Swift
case PUT
-
The PATCH method.
Declaration
Swift
case PATCH
-
The TRACE method.
Declaration
Swift
case TRACE
-
The CONNECT method.
Declaration
Swift
case CONNECT
-
The OPTIONS method.
Declaration
Swift
case OPTIONS