MKLocalSearch.StartAsync Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
StartAsync() | |
StartAsync(CancellationToken) |
StartAsync()
public virtual System.Threading.Tasks.Task<MapKit.MKLocalSearchResponse> StartAsync ();
abstract member StartAsync : unit -> System.Threading.Tasks.Task<MapKit.MKLocalSearchResponse>
override this.StartAsync : unit -> System.Threading.Tasks.Task<MapKit.MKLocalSearchResponse>
Returns
A task that represents the asynchronous Start operation. The value of the TResult parameter is a MKLocalSearchCompletionHandler.
Remarks
(More documentation for this node is coming)
This can be used from a background thread.
The StartAsync method is suitable to be used with C# async by returning control to the caller with a Task representing the operation.
This can be used from a background thread.
Applies to
StartAsync(CancellationToken)
public virtual System.Threading.Tasks.Task<MapKit.MKLocalSearchResponse> StartAsync (System.Threading.CancellationToken token);
abstract member StartAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<MapKit.MKLocalSearchResponse>
override this.StartAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<MapKit.MKLocalSearchResponse>
Parameters
- token
- CancellationToken
Returns
Remarks
(More documentation for this node is coming)
This can be used from a background thread.