On the World Places Locator page, there is a 'Technical Notes' section that has more information that lists a variety of attributes. Is this information that we have access to in the result? All I see in the Silverlight API for the AddressCandidate class is a Score, Location, Address, and Attributes property, and the 'Attributes' property is always nothing in my results. Is there something I am missing? Some way to get candidate attributes returned?
P.S. I am doing a simple locator query similar to this ESRI sample
and the 'Attributes' property is always nothing in my results.
You have to set the OutFields of the AddressToLocationParameters. For example : addressParams.outFields.Add("*"); to get all fields. Then the Attributes property of the AddressCandidate will contain the expected attribute values.