Class PersonName
- Namespace
- Textkernel.Tx.Models.Resume.ContactInfo
- Assembly
- Textkernel.Tx.SDK.dll
A name broken into its constituent parts
public class PersonName
- Inheritance
-
PersonName
- Inherited Members
Properties
FamilyName
The family (last) name
public string FamilyName { get; set; }
Property Value
FormattedName
The full name in a standard format
public string FormattedName { get; set; }
Property Value
GivenName
The given (first) name
public string GivenName { get; set; }
Property Value
MiddleName
The middle name or initial
public string MiddleName { get; set; }
Property Value
Moniker
The nickname/moniker, this is rarely populated
public string Moniker { get; set; }
Property Value
Prefix
A prefix for a name, such as Dr.
public string Prefix { get; set; }
Property Value
Suffix
A suffix for a name, such as Jr. or III
public string Suffix { get; set; }