Class CommonDistinguishedNameBuilder
A builder class for creating a distinguished name string with various attributes, supporting immutability after building.
Inherited Members
Namespace: Coree.NETStandard.Classes.CommonDistinguishedNameBuilder
Assembly: Coree.NETStandard.dll
Syntax
public class CommonDistinguishedNameBuilder
Methods
| Edit this page View SourceAddAttribute(string, string)
Adds a generic attribute to the distinguished name.
Declaration
public void AddAttribute(string key, string value)
Parameters
Type | Name | Description |
---|---|---|
string | key | The attribute type (e.g., "CN", "O"). |
string | value | The value of the attribute. |
Exceptions
Type | Condition |
---|---|
InvalidOperationException | Thrown if the builder has already been used to build a DN. |
ArgumentException | Thrown if the key or value are null or whitespace. |
AddCommonName(string)
Adds a common name to the distinguished name.
Declaration
public void AddCommonName(string commonName)
Parameters
Type | Name | Description |
---|---|---|
string | commonName | The common name to add. |
AddCountryCode(string)
Adds a country code to the distinguished name.
Declaration
public void AddCountryCode(string countryCode)
Parameters
Type | Name | Description |
---|---|---|
string | countryCode | The country code to add. |
AddCountryOrRegion(string)
Adds a country or region to the distinguished name.
Declaration
public void AddCountryOrRegion(string countryOrRegion)
Parameters
Type | Name | Description |
---|---|---|
string | countryOrRegion | The country or region to add. |
AddEmailAddress(string)
Adds an email address to the distinguished name.
Declaration
public void AddEmailAddress(string emailAddress)
Parameters
Type | Name | Description |
---|---|---|
string | emailAddress | The email address to add. |
AddLocalityName(string)
Adds a locality name to the distinguished name.
Declaration
public void AddLocalityName(string localityName)
Parameters
Type | Name | Description |
---|---|---|
string | localityName | The locality name to add. |
AddOrganizationName(string)
Adds an organization name to the distinguished name.
Declaration
public void AddOrganizationName(string organizationName)
Parameters
Type | Name | Description |
---|---|---|
string | organizationName | The organization name to add. |
AddOrganizationalUnitName(string)
Adds an organizational unit name to the distinguished name.
Declaration
public void AddOrganizationalUnitName(string organizationalUnitName)
Parameters
Type | Name | Description |
---|---|---|
string | organizationalUnitName | The organizational unit name to add. |
AddStateOrProvinceName(string)
Adds a state or province name to the distinguished name.
Declaration
public void AddStateOrProvinceName(string stateOrProvinceName)
Parameters
Type | Name | Description |
---|---|---|
string | stateOrProvinceName | The state or province name to add. |
Build()
Builds and returns an immutable distinguished name object.
Declaration
public DistinguishedName Build()
Returns
Type | Description |
---|---|
DistinguishedName | The built distinguished name as an immutable object. |