HTTPHeaderField

public enum HTTPHeaderField : String, CustomStringConvertible, Equatable

Enum representing HTTP header fields supported within EPI Networking.

  • The Accept header field.

    Declaration

    Swift

    case accept = "Accept"
  • The Content-Type header field.

    Declaration

    Swift

    case contentType = "Content-Type"
  • The Authorization header field.

    Declaration

    Swift

    case authorization = "Authorization"
  • A textual representation of the HTTP header field.

    Declaration

    Swift

    public var description: String { get }