URI — Uniform Resource Identifier in HTTP exchange
Represents a Uniform Resource Identifier (URI) reference in an exchange object model. URI properties are read-only.
"scheme": stringThe scheme component of the URI, or null if the
scheme is undefined.
"schemeSpecificPart": stringThe decoded scheme-specific part of the URI, never
null.
"authority": stringThe decoded authority component of the URI, or
null if the authority is undefined.
"userInfo": stringThe decoded user-information component of the URI, or
null if the user information is undefined.
"host": stringThe host component of the URI, or null if the
host is undefined.
"port": numberThe port component of the URI, or null if the
port is undefined.
"path": stringThe decoded path component of the URI, or null
if the path is undefined.
"query": stringThe decoded query component of the URI, or null
if the query is undefined.
"fragment": stringThe decoded fragment component of the URI, or null
if the fragment is undefined.