MonobjcMonobjc Documented Class Library
CLLocationManager..::..LocationManagerDidUpdateToLocationFromLocationEventHandler Delegate
NamespacesMonobjc.CoreLocationCLLocationManagerCLLocationManager..::..LocationManagerDidUpdateToLocationFromLocationEventHandler

Tells the delegate that a new location value is available.

Original signature is '- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void LocationManagerDidUpdateToLocationFromLocationEventHandler(
	CLLocationManager manager,
	CLLocation newLocation,
	CLLocation oldLocation
)
Public Delegate Sub LocationManagerDidUpdateToLocationFromLocationEventHandler ( _
	manager As CLLocationManager, _
	newLocation As CLLocation, _
	oldLocation As CLLocation _
)
public delegate void LocationManagerDidUpdateToLocationFromLocationEventHandler(
	CLLocationManager^ manager, 
	CLLocation^ newLocation, 
	CLLocation^ oldLocation
)
Parameters
manager (CLLocationManager)
The location manager object that generated the update event.
newLocation (CLLocation)
The new location data.
oldLocation (CLLocation)
The location data from the previous update. If this is the first update event delivered by this location manager, this parameter is nil.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.CoreLocation (Module: Monobjc.CoreLocation)