BoxURLComponents

public struct BoxURLComponents

The components that make up a URL

  • URL scheme information

    Declaration

    Swift

    public var scheme: String?
  • URL host information

    Declaration

    Swift

    public var host: String?
  • URL path

    Declaration

    Swift

    public var path: String?
  • Optional URL query parameters

    Declaration

    Swift

    public var query: [String : String]?
  • Optional page reference / anchor

    Declaration

    Swift

    public var fragment: String?