HttpMethod

public enum HttpMethod : String, Sendable

HTTP methods supported by the network module.

  • get

    Declaration

    Swift

    case get = "GET"
  • Declaration

    Swift

    case post = "POST"
  • put

    Declaration

    Swift

    case put = "PUT"
  • Declaration

    Swift

    case delete = "DELETE"
  • Declaration

    Swift

    case patch = "PATCH"
  • Declaration

    Swift

    case head = "HEAD"
  • Declaration

    Swift

    case options = "OPTIONS"