Table of Contents

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

string

FormattedName

The full name in a standard format

public string FormattedName { get; set; }

Property Value

string

GivenName

The given (first) name

public string GivenName { get; set; }

Property Value

string

MiddleName

The middle name or initial

public string MiddleName { get; set; }

Property Value

string

Moniker

The nickname/moniker, this is rarely populated

public string Moniker { get; set; }

Property Value

string

Prefix

A prefix for a name, such as Dr.

public string Prefix { get; set; }

Property Value

string

Suffix

A suffix for a name, such as Jr. or III

public string Suffix { get; set; }

Property Value

string