Class Name
Assembly: Lacuna.RestPki.Client.dll
Syntax
Properties
CommonName
Declaration
public string CommonName { get; set; }
Property Value
Country
Declaration
public string Country { get; set; }
Property Value
DNQualifier
Declaration
public string DNQualifier { get; set; }
Property Value
EmailAddress
Declaration
public string EmailAddress { get; set; }
Property Value
GenerationQualifier
Declaration
public string GenerationQualifier { get; set; }
Property Value
GivenName
Declaration
public string GivenName { get; set; }
Property Value
Initials
Declaration
public string Initials { get; set; }
Property Value
Locality
Declaration
public string Locality { get; set; }
Property Value
Organization
Declaration
public string Organization { get; set; }
Property Value
OrganizationUnit
Declaration
public string OrganizationUnit { get; set; }
Property Value
Pseudonym
Declaration
public string Pseudonym { get; set; }
Property Value
SerialNumber
Declaration
public string SerialNumber { get; set; }
Property Value
StateName
Declaration
public string StateName { get; set; }
Property Value
Surname
Declaration
public string Surname { get; set; }
Property Value
TelephoneNumber
The telephone number, as defined by X.520 (id-at-telephoneNumber)
Declaration
public string TelephoneNumber { get; }
Property Value
Title
Declaration
public string Title { get; set; }
Property Value
Methods
GetAllValues()
Returns all the values present on this Name
Declaration
public Dictionary<string, List<string>> GetAllValues()
Returns
GetValue(String)
Returns the value associated with a given key OID.
Declaration
public string GetValue(string oid)
Parameters
Type |
Name |
Description |
String |
oid |
|
Returns
Type |
Description |
String |
The value associated with the given key OID. If the given key is not present, returns null. If multiple values are present, returns a concatenation of the values separated by ", "
|
GetValues(String)
Returns the collection of values associated with a given key OID
Declaration
public List<string> GetValues(string oid)
Parameters
Type |
Name |
Description |
String |
oid |
|
Returns
Type |
Description |
List<String> |
The values associated with the given key OID. If the given key is not present, an empty list is returned.
|