13 references to ConnectAsync
csc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
405
await Task.Run(() => pipeStream.
ConnectAsync
(timeoutMs, cancellationToken), cancellationToken).ConfigureAwait(false);
dotnet (1)
src\sdk\artifacts\.packages\microsoft.codeanalysis.buildclient\5.9.0-1.26280.103\contentFiles\cs\net11.0\BuildServerConnection.cs (1)
405
await Task.Run(() => pipeStream.
ConnectAsync
(timeoutMs, cancellationToken), cancellationToken).ConfigureAwait(false);
Microsoft.Build.Tasks.CodeAnalysis (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
405
await Task.Run(() => pipeStream.
ConnectAsync
(timeoutMs, cancellationToken), cancellationToken).ConfigureAwait(false);
Microsoft.Diagnostics.NETCore.Client (2)
DiagnosticsIpc\IpcTransport.cs (1)
117
await namedPipe.
ConnectAsync
(int.MaxValue, token).ConfigureAwait(false);
DiagnosticsServerRouter\DiagnosticsServerRouterFactory.cs (1)
652
await namedPipe.
ConnectAsync
(IpcClientTimeoutMs, token).ConfigureAwait(false);
Microsoft.NET.Sdk.Razor.Tasks (1)
src\sdk\src\RazorSdk\Tool\Client.cs (1)
57
await stream.
ConnectAsync
(timeoutMilliseconds, cancellationToken);
rzc (1)
Client.cs (1)
57
await stream.
ConnectAsync
(timeoutMilliseconds, cancellationToken);
System.IO.Pipes (4)
System\IO\Pipes\NamedPipeClientStream.cs (4)
172
return
ConnectAsync
(Timeout.Infinite, CancellationToken.None);
177
return
ConnectAsync
(timeout, CancellationToken.None);
182
return
ConnectAsync
(Timeout.Infinite, cancellationToken);
206
ConnectAsync
(ToTimeoutMilliseconds(timeout), cancellationToken);
vbc (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
405
await Task.Run(() => pipeStream.
ConnectAsync
(timeoutMs, cancellationToken), cancellationToken).ConfigureAwait(false);
VBCSCompiler (1)
src\roslyn\src\Compilers\Shared\BuildServerConnection.cs (1)
405
await Task.Run(() => pipeStream.
ConnectAsync
(timeoutMs, cancellationToken), cancellationToken).ConfigureAwait(false);