docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPMethod.html
public struct HTTPMethod : RawRepresentable, Equatable, Hashable, Sendable
Type representing HTTP methods. Raw String value is stored and compared case-sensitively, so HTTPMethod.get != HTTPMethod(rawValue: "get").
See https://tools.ietf.org/html/rfc7231#section-4.3
`
connect
`
CONNECT method.
Swift
public static let connect: HTTPMethod
`
delete
`
DELETE method.
Swift
public static let delete: HTTPMethod
`
get
`
GET method.
Swift
public static let get: HTTPMethod
`
head
`
HEAD method.
Swift
public static let head: HTTPMethod
`
options
`
OPTIONS method.
Swift
public static let options: HTTPMethod
`
patch
`
PATCH method.
Swift
public static let patch: HTTPMethod
`
post
`
POST method.
Swift
public static let post: HTTPMethod
`
put
`
PUT method.
Swift
public static let put: HTTPMethod
`
query
`
QUERY method.
Swift
public static let query: HTTPMethod
`
trace
`
TRACE method.
Swift
public static let trace: HTTPMethod
`
rawValue
`
Swift
public let rawValue: String
`
init(rawValue:)
`
Swift
public init(rawValue: String)