URL

A Unique Resource Locator.

Constructors

this
this(U source)

Attempts to parse an URL from a string. Output string data (scheme, user, etc.) are just slices of input string (e.g., no memory allocation and copying).

Destructor

~this
~this()
Undocumented in source.

Members

Variables

fragment
U fragment;

The anchor.

host
U host;

The hostname.

pass
U pass;

The password.

path
U path;

The path.

port
ushort port;

The port number.

query
U query;

The query string.

scheme
U scheme;

The URL scheme.

user
U user;

The username.

Parameters

U

URL string type.

Meta