Matches Property
Collection of address candidates that meet the search criteria.
Syntax
public MatchDetailList getMatches();
Remarks
This property will contain the collection of all address candidates. It should be inspected after a call to ValidateAddress. Each match has a City, State, ZipCode, and other optional fields tied to it. The closest match is returned first.
For instance, if the response contains only one address candidate:
m_quality = component.Matches[0].Quality; m_address = component.Matches[0].Address1; m_city = component.Matches[0].City; m_state = component.Matches[0].State; m_country = component.Matches[0].CountryCode;
This property is read-only.