Class DistinguishedNameParams
Data (model) class for the parameters for building the distinguished name of the Subject extension of an X.509 certificate.
Inherited Members
Namespace: Ng911CertUtils
Assembly: Ng911Lib.dll
Syntax
public class DistinguishedNameParams
Constructors
| Edit this page View SourceDistinguishedNameParams()
Default constructor
Declaration
public DistinguishedNameParams()
Properties
| Edit this page View SourcecommonName
Specified the common name (CN) component of the distinguished name of the certificate. Required.
Declaration
public string commonName { get; set; }
Property Value
Type | Description |
---|---|
string |
countryOrRegion
Specifies the country component (C) of the holder of the certificate. If specified (non-null) then this field must contain a 2-digit country code. Optional.
Declaration
public string countryOrRegion { get; set; }
Property Value
Type | Description |
---|---|
string |
domainComponent
Specifies the domain component (DC) of the holder of the certificate. If specified (non-null) then this field must contain a valid Fully Qualified Domain Name (FQDN). Optional.
Declaration
public string domainComponent { get; set; }
Property Value
Type | Description |
---|---|
string |
emailAddress
Specifies the email address component (E) of the holder of the certificate. If specified, (non-null) then this field must be a valid email address. Optional.
Declaration
public string emailAddress { get; set; }
Property Value
Type | Description |
---|---|
string |
localityOrCityName
Specifies the locality or city name component (L) of the holder of the certificate. Optional.
Declaration
public string localityOrCityName { get; set; }
Property Value
Type | Description |
---|---|
string |
organizationName
Specifies the organization name component (O) of the holder of the certificate. Optional.
Declaration
public string organizationName { get; set; }
Property Value
Type | Description |
---|---|
string |
organizationalUnitName
Specifies the organization unit component (OU) of the holder of the certificate. Optional.
Declaration
public string organizationalUnitName { get; set; }
Property Value
Type | Description |
---|---|
string |
stateOrProvinceName
Specifies the state or province name (S) of the holder of the certificate. Optional.
Declaration
public string stateOrProvinceName { get; set; }
Property Value
Type | Description |
---|---|
string |