1 implementation of LocationChanged
Microsoft.Maui.Essentials (1)
Geolocation\Geolocation.shared.cs (1)
175
public event EventHandler<GeolocationLocationChangedEventArgs>?
LocationChanged
;
5 references to LocationChanged
Microsoft.Maui.Essentials (5)
Geolocation\Geolocation.shared.cs (4)
46
/// <see cref="
LocationChanged
"/> events are sent.
51
/// Starts listening to location updates using the <see cref="
LocationChanged
"/> event. Events
122
add => Current.
LocationChanged
+= value;
123
remove => Current.
LocationChanged
-= value;
Geolocation\GeolocationLocationChangedEventArgs.shared.cs (1)
7
/// Event arguments containing the current reading of <see cref="IGeolocation.
LocationChanged
"/>.