HttpMethod

public enum HttpMethod : String

The available HTTP methods.

  • HEAD HTTP method.

    Declaration

    Swift

    case head
  • get

    GET HTTP method.

    Declaration

    Swift

    case get
  • POST HTTP method.

    Declaration

    Swift

    case post
  • put

    PUT HTTP method.

    Declaration

    Swift

    case put
  • PATCH HTTP method.

    Declaration

    Swift

    case patch
  • DELETE HTTP method.

    Declaration

    Swift

    case delete