Append the provided path to this URL's existing path. If the provided path contains a query, then it will be added to this URL as well.
Get the host that has been set in this URL.
Get the path that has been set in this URL.
Get the port that has been set in this URL.
Get the query in this URL.
Get the value of the query parameter with the provided query parameter name. If no query parameter exists with the provided name, then undefined will be returned.
Get the scheme that has been set in this URL.
If the provided searchValue is found in this URLBuilder, then replace it with the provided replaceValue.
Set the host for this URL. If the provided host contains other parts of a URL (such as a port, path, or query), those parts will be added to this URL as well.
Set the path for this URL. If the provided path contains a query, then it will be added to this URL as well.
Set the port for this URL. If the provided port contains other parts of a URL (such as a path or query), those parts will be added to this URL as well.
Set the query in this URL.
Set a query parameter with the provided name and value in this URL's query. If the provided query parameter value is undefined or empty, then the query parameter will be removed if it existed.
Set the scheme/protocol for this URL. If the provided scheme contains other parts of a URL (such as a host, port, path, or query), those parts will be added to this URL as well.
Generated using TypeDoc
A class that handles creating, modifying, and parsing URLs.