Class AuthenticationOptions
- Namespace
- EvoPdf
- Assembly
- evohtmltopdf.dll
Authentication options for accessing a URL in HTML to PDF converter like Integrated Windows Authentication in IIS.
[ClassInterface(ClassInterfaceType.AutoDual)]
public class AuthenticationOptions
- Inheritance
-
AuthenticationOptions
- Inherited Members
Constructors
AuthenticationOptions()
public AuthenticationOptions()
Properties
Password
The password of the user used for authentication
public string Password { get; set; }
Property Value
UseDefaultCredentials
A flag indicating if the credentials of the user running the converter are sent when the converter requests the web page from server. If the Username property is set this property will not have any effect. The default value is true
public bool UseDefaultCredentials { get; set; }
Property Value
Username
The username of the user used for authentication
public string Username { get; set; }