Provides an read-only model representation of a uniform resource identifier (URI) and easy access to the parts of the URI.

The read-only model (frozen) is easier for debugging than exposing accessors for each property.

Hierarchy

  • Uri

Implements

Constructors

  • Parameters

    • scheme: null | Any

      The user name, password, or other user-specific information associated with the specified URI.

    • userInfo: null | string

      The host component of this instance.

    • host: null | string

      The port number of this URI.

    • port: null | number

      The absolute path of the URI.

    • path: null | string

      The absolute path of the URI.

    • Optional query: Convertible

      Any query information included in the specified URI.

    • Optional fragment: string

      The escaped URI fragment.

    Returns Uri

Properties

absoluteUri: string

The absolute URI.

authority: null | string

Gets the Domain Name System (DNS) host name or IP address and the port number for a server.

baseUri: string

Gets the full path without the query or fragment.

fragment: null | string

The escaped URI fragment.

host: null | string

The host component of this instance.

path: null | string

The absolute path of the URI.

pathAndQuery: null | string

Gets the path and Query properties separated by a question mark (?).

port: null | number

The port number of this URI.

query: null | string

Gets any query information included in the specified URI.

queryParams: Readonly<{
    [key: string]: Primitive | Primitive[];
}>
scheme: null | Any

The scheme name for this URI.

userInfo: null | string

The user name, password, or other user-specific information associated with the specified URI.

Accessors

Methods

  • Compares the values of another IUri via toString comparison.

    Returns

    Parameters

    Returns boolean

  • Is provided for sub classes to override this value.

    Returns string

  • Is provided for sub classes to override this value.

    Returns string

  • Is provided for sub classes to override this value.

    Returns string

  • Returns

    The full absolute uri.

    Returns string

  • Returns the authority segment of an URI.

    Returns

    Parameters

    Returns string

  • Parses a URL into it's components.

    Returns

    Will throw an exception if not able to parse.

    Parameters

    • url: string

      The url to parse.

    Returns UriValues

  • Parameters

    • url: string
    • throwIfInvalid: true

    Returns UriValues

  • Parses a URL into it's components.

    Returns

    Returns a map of the values or null if invalid and throwIfInvalid is false.

    Parameters

    • url: string

      The url to parse.

    • throwIfInvalid: boolean

      Defaults to true.

    Returns null | UriValues

  • Properly converts an existing URI to a string.

    Returns

    Parameters

    Returns string

  • Parses a URL into it's components.

    Returns

    True if valid. False if invalid.

    Parameters

    • url: string

      The url to parse.

    • out: ((result: UriValues) => void)

      A delegate to capture the value.

    Returns boolean

Generated using TypeDoc