URI
Represents a Uniform Resource Identifier (URI) reference.
Properties
"scheme": string-
The scheme component of the URI, or
nullif the scheme is undefined. "authority": string-
The decoded authority component of the URI, or
nullif the authority is undefined.Use "rawAuthority" to access the raw (encoded) component.
"userInfo": string-
The decoded user-information component of the URI, or
nullif the user information is undefined.Use "rawUserInfo" to access the raw (encoded) component.
"host": string-
The host component of the URI, or
nullif the host is undefined. "port": number-
The port component of the URI, or
nullif the port is undefined. "path": string-
The decoded path component of the URI, or
nullif the path is undefined.Use "rawPath" to access the raw (encoded) component.
"query": string-
The decoded query component of the URI, or
nullif the query is undefined.The query key and value is decoded. However, because a query value can be encoded more than once in a redirect chain, even though it is decoded it can contain unsafe ASCII characters. Use "rawQuery" to access the raw (encoded) component.
"fragment": string-
The decoded fragment component of the URI, or
nullif the fragment is undefined.Use "rawFragment" to access the raw (encoded) component.