ArcObjects Library Reference (Location)  

IAdvancedIntersectionGeocoding.FindStandardizedIntersectionCandidates Method

Generates candidates for a standardized intersection.

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

Parameters

standardizedIntersection [in]

  standardizedIntersection is a parameter of type IPropertySet

results [out, retval]

  results is a parameter of type IArray

Product Availability

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

Remarks

The FindStandardizedIntersectionCandidates method returns a set of candidates for a standardized intersection address.

The standardizedIntersection parameter is a PropertySet that contains a standardized address. You can create a standardized address using the IAdvancedGeocoding::StandardizeAddress method.

This method returns an Array of PropertySets containing candidates for the standardized intersection address. The names of the properties are defined by the names of the fields returned by the IIntersectionGeocoding::IntersectionCandidateFields property.

See Also

IAdvancedIntersectionGeocoding Interface