Freigeben über


Geolocation.GetLocationAsync Methode

Definition

Überlädt

GetLocationAsync()

Gibt den aktuellen Standort des Geräts zurück.

GetLocationAsync(GeolocationRequest)

Gibt den aktuellen Standort des Geräts zurück.

GetLocationAsync(GeolocationRequest, CancellationToken)

Gibt den aktuellen Standort des Geräts zurück.

GetLocationAsync()

Quelle:
Geolocation.shared.cs
Quelle:
Geolocation.shared.cs

Gibt den aktuellen Standort des Geräts zurück.

public:
 static System::Threading::Tasks::Task<Microsoft::Maui::Devices::Sensors::Location ^> ^ GetLocationAsync();
public static System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location?> GetLocationAsync ();
static member GetLocationAsync : unit -> System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location>
Public Shared Function GetLocationAsync () As Task(Of Location)

Gibt zurück

Ein Location Objekt, das aktuelle Standortinformationen enthält oder null wenn kein Standort ermittelt werden konnte.

Hinweise

Die Standortberechtigungen werden bei Bedarf zur Laufzeit angefordert. Möglicherweise müssen Sie noch etwas in Ihrem App-Manifest deklarieren.

Gilt für:

GetLocationAsync(GeolocationRequest)

Quelle:
Geolocation.shared.cs
Quelle:
Geolocation.shared.cs

Gibt den aktuellen Standort des Geräts zurück.

public:
 static System::Threading::Tasks::Task<Microsoft::Maui::Devices::Sensors::Location ^> ^ GetLocationAsync(Microsoft::Maui::Devices::Sensors::GeolocationRequest ^ request);
public static System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location?> GetLocationAsync (Microsoft.Maui.Devices.Sensors.GeolocationRequest request);
static member GetLocationAsync : Microsoft.Maui.Devices.Sensors.GeolocationRequest -> System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location>
Public Shared Function GetLocationAsync (request As GeolocationRequest) As Task(Of Location)

Parameter

request
GeolocationRequest

Die Kriterien, die bei der Bestimmung des Standorts des Geräts verwendet werden sollen.

Gibt zurück

Ein Location Objekt, das aktuelle Standortinformationen enthält oder null wenn kein Standort ermittelt werden konnte.

Hinweise

Die Standortberechtigungen werden bei Bedarf zur Laufzeit angefordert. Möglicherweise müssen Sie noch etwas in Ihrem App-Manifest deklarieren.

Gilt für:

GetLocationAsync(GeolocationRequest, CancellationToken)

Quelle:
Geolocation.shared.cs
Quelle:
Geolocation.shared.cs

Gibt den aktuellen Standort des Geräts zurück.

public:
 static System::Threading::Tasks::Task<Microsoft::Maui::Devices::Sensors::Location ^> ^ GetLocationAsync(Microsoft::Maui::Devices::Sensors::GeolocationRequest ^ request, System::Threading::CancellationToken cancelToken);
public static System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location?> GetLocationAsync (Microsoft.Maui.Devices.Sensors.GeolocationRequest request, System.Threading.CancellationToken cancelToken);
static member GetLocationAsync : Microsoft.Maui.Devices.Sensors.GeolocationRequest * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Maui.Devices.Sensors.Location>
Public Shared Function GetLocationAsync (request As GeolocationRequest, cancelToken As CancellationToken) As Task(Of Location)

Parameter

request
GeolocationRequest

Die Kriterien, die bei der Bestimmung des Standorts des Geräts verwendet werden sollen.

cancelToken
CancellationToken

Ein Token, das zum Abbrechen des Vorgangs verwendet werden kann.

Gibt zurück

Ein Location Objekt, das aktuelle Standortinformationen enthält oder null wenn kein Standort ermittelt werden konnte.

Hinweise

Die Standortberechtigungen werden bei Bedarf zur Laufzeit angefordert. Möglicherweise müssen Sie noch etwas in Ihrem App-Manifest deklarieren.

Gilt für: