Structure
Method
public struct Method: Component
A struct
defining the request
HTTP method for a given endpoint.
Relationships
Conforms To
Component
A
protocol
defining a unique identifier for a specific request component.
Initializers
init(_:)
public init(_ method: HTTPMethod)
Init.
Parameters
Name | Type | Description |
---|---|---|
method | HTTPMethod |
The request HTTP method for a given endpoint. |
Properties
defaultValue
public static var defaultValue: Method
The default value when no cached component can be found.
Methods
update(_:)
public func update(_ request: inout URLRequest)
Update a given URLRequest
.
Parameters
Name | Type | Description |
---|---|---|
request | inout URLRequest |
A mutable |