WebBrowser SetUserPassword Method C# API
Sets the username and password that will be used for HTTP authentication.

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

public void SetUserPassword(
	string username,
	string password
)

Parameters

username
Type: System String
The username that will be used for HTTP authentication.
password
Type: System String
The password that will be used for HTTP authentication.
Remarks

If the web server returns an HTTP 401 (Unauthorized) response to a request, then eggPlant Performance will automatically retry the request with an additional "Authorization" HTTP header, using this username and password.
See Also