Class Name
Assembly: Lacuna.RestPki.Client.dll
Syntax
Properties
|
Improve this Doc
View Source
CommonName
Declaration
public string CommonName { get; set; }
Property Value
|
Improve this Doc
View Source
Country
Declaration
public string Country { get; set; }
Property Value
|
Improve this Doc
View Source
DNQualifier
Declaration
public string DNQualifier { get; set; }
Property Value
|
Improve this Doc
View Source
EmailAddress
Declaration
public string EmailAddress { get; set; }
Property Value
|
Improve this Doc
View Source
GenerationQualifier
Declaration
public string GenerationQualifier { get; set; }
Property Value
|
Improve this Doc
View Source
GivenName
Declaration
public string GivenName { get; set; }
Property Value
|
Improve this Doc
View Source
Initials
Declaration
public string Initials { get; set; }
Property Value
|
Improve this Doc
View Source
Locality
Declaration
public string Locality { get; set; }
Property Value
|
Improve this Doc
View Source
Organization
Declaration
public string Organization { get; set; }
Property Value
|
Improve this Doc
View Source
OrganizationUnit
Declaration
public string OrganizationUnit { get; set; }
Property Value
|
Improve this Doc
View Source
Pseudonym
Declaration
public string Pseudonym { get; set; }
Property Value
|
Improve this Doc
View Source
SerialNumber
Declaration
public string SerialNumber { get; set; }
Property Value
|
Improve this Doc
View Source
StateName
Declaration
public string StateName { get; set; }
Property Value
|
Improve this Doc
View Source
Surname
Declaration
public string Surname { get; set; }
Property Value
|
Improve this Doc
View Source
TelephoneNumber
The telephone number, as defined by X.520 (id-at-telephoneNumber)
Declaration
public string TelephoneNumber { get; }
Property Value
|
Improve this Doc
View Source
Title
Declaration
public string Title { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
GetAllValues()
Returns all the values present on this Name
Declaration
public Dictionary<string, List<string>> GetAllValues()
Returns
|
Improve this Doc
View Source
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 ", "
|
|
Improve this Doc
View Source
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.
|