CLGeocodeCompletionHandler Delegate

Definition

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.

Applies to