Class CertificateSettings
- Namespace
- AdvanceFileUpload.API
- Assembly
- AdvanceFileUpload.API.dll
Represents the certificate configuration options for HTTPS endpoints. Provides information for locating and authenticating the certificate.
public class CertificateSettings
- Inheritance
-
CertificateSettings
- Inherited Members
Properties
Location
Gets or sets the certificate store location, such as "LocalMachine" or "CurrentUser".
public string Location { get; set; }
Property Value
Password
Gets or sets the certificate password. It is recommended to use environment variables or secure stores for production.
public string Password { get; set; }
Property Value
Path
Gets or sets the file path to the certificate (PFX or P12 format).
public string Path { get; set; }
Property Value
Store
Gets or sets the name of the Windows certificate store (e.g., "My", "Root").
public string Store { get; set; }
Property Value
Subject
Gets or sets the subject name for certificate lookup in the store.
public string Subject { get; set; }