HTTPMethod
public enum HTTPMethod : String, Codable
-
GET
method.Declaration
Swift
case get = "GET"
-
POST
method.Declaration
Swift
case post = "POST"
-
DELETE
method.Declaration
Swift
case delete = "DELETE"
-
PUT
method.Declaration
Swift
case put = "PUT"
-
HEAD
method.Declaration
Swift
case head = "HEAD"
-
TRACE
method.Declaration
Swift
case track = "TRACE"
-
PATCH
method.Declaration
Swift
case patch = "PATCH"
-
OPTIONS
method.Declaration
Swift
case options = "OPTIONS"
-
CONNECT
method.Declaration
Swift
case connect = "CONNECT"