HTTPMethod
enum HTTPMethod : Int, @unchecked SendableUndocumented
-
HTTP Method GET
Declaration
Swift
case get = 0 -
HTTP Method PUT
Declaration
Swift
case put = 1 -
HTTP Method POST
Declaration
Swift
case post = 2 -
HTTP Method DELETE
Declaration
Swift
case delete = 3 -
HTTP Method HEAD
Declaration
Swift
case head = 4 -
HTTP Method PATCH
Declaration
Swift
case patch = 5 -
HTTP Method OPTIONS
Declaration
Swift
case options = 6 -
HTTP Method TRACE
Declaration
Swift
case trace = 7 -
HTTP Method CONNECT
Declaration
Swift
case connect = 8