MKLocalSearch.StartAsync Method

Definition

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

Returns

Remarks

(More documentation for this node is coming)

This can be used from a background thread.

Applies to