29 references to GetAwaiter
Aspire.Microsoft.Extensions.Configuration.AzureAppConfiguration.Tests (2)
ConformanceTests.cs (2)
97Task.Delay(1000).ConfigureAwait(false).GetAwaiter().GetResult(); 98service.Refreshers.First().RefreshAsync().ConfigureAwait(false).GetAwaiter().GetResult();
GenerateDocumentationAndConfigFiles (2)
src\roslyn\src\Dependencies\Threading\TaskExtensions.cs (2)
106_task.ConfigureAwait(_captureContext).GetAwaiter().OnCompleted(continuation); 116_task.ConfigureAwait(_captureContext).GetAwaiter().UnsafeOnCompleted(continuation);
Microsoft.AspNetCore.Components (1)
Rendering\RendererSynchronizationContext.cs (1)
182antecedent.ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing).GetAwaiter().GetResult();
Microsoft.AspNetCore.Mvc.Testing (1)
WebApplicationFactory.cs (1)
846.GetAwaiter()
Microsoft.Build.Tasks.Core (1)
Unzip.cs (1)
282.GetAwaiter()
Microsoft.CodeAnalysis.Analyzers (2)
src\roslyn\src\Dependencies\Threading\TaskExtensions.cs (2)
106_task.ConfigureAwait(_captureContext).GetAwaiter().OnCompleted(continuation); 116_task.ConfigureAwait(_captureContext).GetAwaiter().UnsafeOnCompleted(continuation);
Microsoft.CodeAnalysis.AnalyzerUtilities (2)
src\roslyn\src\Dependencies\Threading\TaskExtensions.cs (2)
106_task.ConfigureAwait(_captureContext).GetAwaiter().OnCompleted(continuation); 116_task.ConfigureAwait(_captureContext).GetAwaiter().UnsafeOnCompleted(continuation);
Microsoft.CodeAnalysis.CodeStyle (2)
src\roslyn\src\Dependencies\Threading\TaskExtensions.cs (2)
106_task.ConfigureAwait(_captureContext).GetAwaiter().OnCompleted(continuation); 116_task.ConfigureAwait(_captureContext).GetAwaiter().UnsafeOnCompleted(continuation);
Microsoft.CodeAnalysis.ResxSourceGenerator (2)
src\roslyn\src\Dependencies\Threading\TaskExtensions.cs (2)
106_task.ConfigureAwait(_captureContext).GetAwaiter().OnCompleted(continuation); 116_task.ConfigureAwait(_captureContext).GetAwaiter().UnsafeOnCompleted(continuation);
Microsoft.CodeAnalysis.Workspaces (2)
src\roslyn\src\Dependencies\Threading\TaskExtensions.cs (2)
106_task.ConfigureAwait(_captureContext).GetAwaiter().OnCompleted(continuation); 116_task.ConfigureAwait(_captureContext).GetAwaiter().UnsafeOnCompleted(continuation);
Microsoft.VisualBasic.Forms (1)
Microsoft\VisualBasic\ApplicationServices\WindowsFormsApplicationBase.vb (1)
1118awaitable.GetAwaiter().GetResult()
Roslyn.Diagnostics.Analyzers (2)
src\roslyn\src\Dependencies\Threading\TaskExtensions.cs (2)
106_task.ConfigureAwait(_captureContext).GetAwaiter().OnCompleted(continuation); 116_task.ConfigureAwait(_captureContext).GetAwaiter().UnsafeOnCompleted(continuation);
System.Net.Sockets (1)
System\Net\Sockets\Socket.cs (1)
2660((Task)ti).ConfigureAwait(ConfigureAwaitOptions.SuppressThrowing).GetAwaiter().GetResult();
System.Private.CoreLib (8)
src\runtime\src\libraries\Common\src\System\Threading\Tasks\TaskToAsyncResult.cs (1)
140.GetAwaiter()
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\AsyncHelpers.cs (1)
251ConfiguredTaskAwaitable.ConfiguredTaskAwaiter awaiter = configuredAwaitable.GetAwaiter();
src\runtime\src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\ConfiguredValueTaskAwaitable.cs (6)
59t.ConfigureAwait(_value._continueOnCapturedContext).GetAwaiter().OnCompleted(continuation); 69Task.CompletedTask.ConfigureAwait(_value._continueOnCapturedContext).GetAwaiter().OnCompleted(continuation); 81t.ConfigureAwait(_value._continueOnCapturedContext).GetAwaiter().UnsafeOnCompleted(continuation); 90Task.CompletedTask.ConfigureAwait(_value._continueOnCapturedContext).GetAwaiter().UnsafeOnCompleted(continuation); 182Task.CompletedTask.ConfigureAwait(_value._continueOnCapturedContext).GetAwaiter().OnCompleted(continuation); 203Task.CompletedTask.ConfigureAwait(_value._continueOnCapturedContext).GetAwaiter().UnsafeOnCompleted(continuation);