2 implementations of GetRpcClientAsync
aspire (1)
Projects\AppHostServerSession.cs (1)
292public async Task<IAppHostRpcClient> GetRpcClientAsync(CancellationToken cancellationToken)
Aspire.Cli.Tests (1)
TestServices\FakeAppHostServerSession.cs (1)
66public Task<IAppHostRpcClient> GetRpcClientAsync(CancellationToken cancellationToken)
9 references to GetRpcClientAsync
aspire (9)
Commands\Sdk\SdkDumpCommand.cs (2)
210var rpcClient = await serverSession.GetRpcClientAsync(cancellationToken); 308var rpcClient = await serverSession.GetRpcClientAsync(cancellationToken);
Commands\Sdk\SdkExportCommand.cs (1)
220var rpcClient = await serverSession.GetRpcClientAsync(cancellationToken);
Commands\Sdk\SdkGenerateCommand.cs (1)
164var rpcClient = await serverSession.GetRpcClientAsync(cancellationToken);
Projects\GuestAppHostProject.cs (3)
329var rpcClient = await serverSession.GetRpcClientAsync(cancellationToken); 513rpcClient = await serverSession.GetRpcClientAsync(cancellationToken); 1140rpcClient = await serverSession.GetRpcClientAsync(cancellationToken);
Projects\IAppHostServerSession.cs (1)
76/// <see cref="IAppHostServerSession.GetRpcClientAsync"/>, then disposal. Cancelling
Scaffolding\ScaffoldingService.cs (1)
160var rpcClient = await serverSession.GetRpcClientAsync(cancellationToken);