database.url

Members

Functions

parseURL
URL parseURL(string value)

Parse the input string as a URL.

percentDecode
string percentDecode(string encoded)

Percent-decode a string.

percentDecodeRaw
ubyte[] percentDecodeRaw(string encoded)

Percent-decode a string into a ubyte array.

percentEncode
string percentEncode(string raw)

Percent-encode a string.

punyDecode
string punyDecode(string input)

Decode the input string using the Punycode algorithm.

punyEncode
string punyEncode(string input)

Encode the input string using the Punycode algorithm.

tryParseURL
bool tryParseURL(string value, out URL url)

Parse a URL from a string.

Structs

QueryParams
struct QueryParams

A collection of query parameters.

URL
struct URL

A Unique Resource Locator.

Meta