Shipping Integrator V5 - Online Help
Shipping Integrator V5
Questions / Feedback?

Matches Property

Collection of address candidates that meet the search criteria.

Syntax

[VB.NET]
Public ReadOnlyProperty Matches As MatchDetailList

[C#]
public MatchDetailList Matches {get;}

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.

Default Value

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 5.0.6240.0