Table of Contents

Class ContactInformation

Namespace
Textkernel.Tx.Models.Resume.ContactInfo
Assembly
Textkernel.Tx.SDK.dll

A candidate's contact information listed on a resume

public class ContactInformation
Inheritance
ContactInformation
Inherited Members

Properties

CandidateName

The candidate's name

public PersonName CandidateName { get; set; }

Property Value

PersonName

EmailAddresses

The candidate's email addresses

public List<string> EmailAddresses { get; set; }

Property Value

List<string>

Location

The candidate's location/address. The Parser does not standardize addresses. Address standardization services are available, including for example the Google Maps API, that can take the Parser's contact info fields and standardize/geocode the data.

public Location Location { get; set; }

Property Value

Location

Telephones

The candidate's phone numbers. If multiple numbers are found, mobile phone numbers will be listed first

public List<Telephone> Telephones { get; set; }

Property Value

List<Telephone>

WebAddresses

The candidate's web addresses (URLs, social media) listed on the resume

public List<WebAddress> WebAddresses { get; set; }

Property Value

List<WebAddress>