ValidateStatus303BodyStrategy
public struct ValidateStatus303BodyStrategy : ResponseBodyDecodingStrategy
A strategy for validating response bodies with status code 303.
The ValidateStatus303BodyStrategy
struct provides a strategy for validating response bodies
with a status code of 303 (See Other). It conforms to the ResponseBodyDecodingStrategy
protocol
and defines the allowsEmptyContent(for:)
and validate(statusCode:)
methods.
Example usage:
@ResponseBodyWrapper<Body, ValidateStatus303BodyStrategy> var body: Body
-
Indicates whether empty content is allowed for the given status code.
This method always returns
true
for status code 303, indicating that empty content is allowed.Declaration
Swift
public static func allowsEmptyContent(for _: Int) -> Bool
Return Value
A Boolean value indicating whether empty content is allowed.
-
Validates the HTTP status code to determine if it is 303 (See Other).
This method checks if the given status code is equal to the raw value of
HTTPStatusCode.seeOther
.Declaration
Swift
public static func validate(statusCode: Int) -> Bool
Parameters
statusCode
The HTTP status code of the response.
Return Value
A Boolean value indicating whether the status code is 303.