5 references to GetResult
mscorlib (4)
system\io\stream.cs (2)
396
return readTask.GetAwaiter().
GetResult
(); // block until completion, then get result / propagate any exception
583
writeTask.GetAwaiter().
GetResult
(); // block until completion, then propagate any exceptions
system\threading\SemaphoreSlim.cs (1)
438
return (asyncWaitTask != null) ? asyncWaitTask.GetAwaiter().
GetResult
() : waitSuccessful;
system\threading\Tasks\TaskToApm.cs (1)
118
return task.GetAwaiter().
GetResult
();
System.ServiceModel (1)
System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (1)
142
invokeTask.GetAwaiter().
GetResult
();