CLGeocodeCompletionHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A delegate that is the completionHandler
in calls to GeocodePostalAddressAsync(CNPostalAddress, NSLocale).
public delegate void CLGeocodeCompletionHandler(CLPlacemark[] placemarks, NSError error);
type CLGeocodeCompletionHandler = delegate of CLPlacemark[] * NSError -> unit
Parameters
- placemarks
- CLPlacemark[]
Returns null on error, otherwise the list of placemark locations. Typically one, but could be more than one if the location is known by multiple names.
- error
- NSError
Error information.