MonobjcMonobjc Documented Class Library
LocationManagerDidUpdateToLocationFromLocationMessage Method (manager, newLocation, oldLocation)
NamespacesMonobjc.CoreLocationCLLocationManager..::..CLLocationManagerDelegateEventDispatcherLocationManagerDidUpdateToLocationFromLocationMessage(CLLocationManager, CLLocation, CLLocation)

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 void LocationManagerDidUpdateToLocationFromLocationMessage(
	CLLocationManager manager,
	CLLocation newLocation,
	CLLocation oldLocation
)
Public Sub LocationManagerDidUpdateToLocationFromLocationMessage ( _
	manager As CLLocationManager, _
	newLocation As CLLocation, _
	oldLocation As CLLocation _
)
public:
void LocationManagerDidUpdateToLocationFromLocationMessage(
	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)