ArcObjects Library Reference (Location)  

IAdvancedIntersectionGeocoding.MatchStandardizedIntersection Method

Geocodes a single standardized intersection.

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

Parameters

standardizedIntersection [in]

  standardizedIntersection 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

Use the MatchStandardizedIntersection method to match a standardized intersection address.

The standardizedIntersection parameter is a PropertySet containing the components of the standardized intersection address. You can obtain a standardized address using the IAdvancedGeocoding::StandardizeAddress method.

This method returns a PropertySet containing the match for the address. The names of its properties are determined by the names of the fields returned by the IAddressGeocoding::MatchFields property.

See Also

IAdvancedIntersectionGeocoding Interface