Authentication settings to use to connect to a web site.
C#
public struct AuthenticationInfo {
public String User;
public String Domain;
public String Password;
public bool HaveData;
public bool AllowBasicAuthentication;
public bool AllowIntranetAutologon;
}
Members
Members |
Description |
---|---|
User |
Name of account to use to access the web site |
Domain |
Domain of account to use to access the web site |
Password |
Password to access the web site |
HaveData |
If HaveData is not true, all values in AuthenticationInfo will be ignored when connecting to the web site |
AllowBasicAuthentication |
Send user name and password even if a site only supports basic authentication (this may cause authentication data to be sent without encryption). |
AllowIntranetAutologon |
Allow automatic logon using Windows credentials for intranet web sites that require authentication |
See Also