Group
Show / Hide Table of Contents

Class ContactInformation

A candidate's contact information listed on a resume

Inheritance
System.Object
ContactInformation
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.Resume.ContactInfo
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class ContactInformation

Properties

| Improve this Doc View Source

CandidateName

The candidate's name

Declaration
public PersonName CandidateName { get; set; }
Property Value
Type Description
PersonName
| Improve this Doc View Source

EmailAddresses

The candidate's email addresses

Declaration
public List<string> EmailAddresses { get; set; }
Property Value
Type Description
System.Collections.Generic.List<System.String>
| Improve this Doc View Source

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.

Declaration
public Location Location { get; set; }
Property Value
Type Description
Location
| Improve this Doc View Source

Telephones

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

Declaration
public List<Telephone> Telephones { get; set; }
Property Value
Type Description
System.Collections.Generic.List<Telephone>
| Improve this Doc View Source

WebAddresses

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

Declaration
public List<WebAddress> WebAddresses { get; set; }
Property Value
Type Description
System.Collections.Generic.List<WebAddress>
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾