Method

public enum Method : UInt8
extension Method: Sendable
extension Method: Equatable, Hashable

HTTP Methods.

The supported methods are the limited to what’s supported by android-components.

  • get

    Declaration

    Swift

    case get = 0
  • Declaration

    Swift

    case head = 1
  • Declaration

    Swift

    case post = 2
  • put

    Declaration

    Swift

    case put = 3
  • Declaration

    Swift

    case delete = 4
  • Declaration

    Swift

    case connect = 5
  • Declaration

    Swift

    case options = 6
  • Declaration

    Swift

    case trace = 7
  • Declaration

    Swift

    case patch = 8