ArcObjects Library Reference (Location)  

IAdvancedGeocoding.MatchStandardizedAddress Method

Geocodes a single standardized address.

[Visual Basic .NET]
Public Function MatchStandardizedAddress ( _
    ByVal standardizedAddress As IPropertySet _
) As IPropertySet
[C#]
public IPropertySet MatchStandardizedAddress (
    IPropertySet standardizedAddress
);
[C++]
HRESULT MatchStandardizedAddress(
  IPropertySet* standardizedAddress,
  IPropertySet** result
);
[C++]

Parameters

standardizedAddress [in]

  standardizedAddress is a parameter of type IPropertySet

result [out, retval]

  result is a parameter of type IPropertySet

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Remarks

All of the locators provided with ArcGIS prior to 10.0 standardize addresses before matching them to the reference data. Version 10.0 locators do not use standardization for matching and therefore do not support IAdvancedGeocoding.

Sometimes, locators are not able to standardize addresses properly and thus cannot match them. If you find addresses that a locator cannot match, examining how they are standardized may help you determine why they cannot be matched. You may even be able to modify the standardization so that the addresses are standardized properly and thus improve the likelihood that the locator can match them.

The standardizedAddress parameter is a PropertySet containing a standardized address. Use the StandardizeAddress method to obtain a PropertySet containing a standardized address. Alternatively, you can construct a standardized address by creating a PropertySet whose values are defined by the names of the fields returned by the StandardizeFields property.

The PropertySet returned by this method has properties whose names are defined by the names of the fields returned by the IAddressGeocoding::MatchFields property.

See Also

IAdvancedGeocoding Interface | IAdvancedGeocoding.MatchStandardizedAddress Method | IAdvancedGeocoding.MatchStandardizedAddress Method | ILocatorExtension Interface | FindAddresses Class | IAddressFindData Interface | LocatorExtension Class | AddressFindData Class | IPropertySet.RemoveProperty Method | PropertySet Class | IPropertySet.Count Property | IPropertySet.IsEqual Method