|
Syntax
string Complete;
Description
contains the unparsed original URL, for example,
http://me:pass @www.sun.de:8080/pub/test/foo.txt?a=b#xyz
Syntax
string Main;
Description
contains the URL without a mark and without arguments, for example,
http://me:pass @www.sun.de:8080/pub/test/foo.txt
Syntax
string Protocol;
Description
contains the protocol (scheme) of the URL, for example, "http"
Syntax
string User;
Description
contains the user-identifier of the URL, for example, "me"
Syntax
string Password;
Description
contains the users password of the URL, for example, "pass"
Syntax
string Server;
Description
contains the server part of the URL, for example, "www.sun.de"
Syntax
short Port;
Description
contains the port at the server of the URL, for example, "8080"
Syntax
string Path;
Description
contains the path part of the URL without the filename, for example, "/pub/test"
Syntax
string Name;
Description
contains the filename part of the URL, for example, "foo.txt"
Syntax
string Arguments;
Description
contains the arguments part of the URL, for example, "a=b"
Syntax
string Mark;
Description
contains the mark part of the URL, for example, "xyz"
|