System.Threading.Tasks.TaskCompletionSource.TrySetResult(Location)

Here are the examples of the csharp api System.Threading.Tasks.TaskCompletionSource.TrySetResult(Location) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : LocationService.cs
with MIT License
from edsnider

public void OnLocationChanged(Location location)
		{
			_tcs.TrySetResult(location);
		}