Url Password Property C# API
Gets the password specified in this Url.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public string Password { get; }

Field Value

The password specified in this Url, or an empty string if no password is specified.
Remarks

If a username and password are present in a URL, they appear before the host.

e.g. http://username:password@www.myCompany.co.uk

Note Note
A Url object is immutable - that is, it cannot be changed after it has been created. To modify the password, call WithCredentials(String, String) to get a new Url object with the required modification.
See Also