1 instantiation of AppHostRpcClient
aspire (1)
Projects\AppHostRpcClient.cs (1)
71
return new
AppHostRpcClient
(stream, jsonRpc, profilingTelemetry);
4 references to AppHostRpcClient
aspire (4)
Projects\AppHostCodeGenerationException.cs (1)
7
/// Thrown by <see cref="
AppHostRpcClient
"/> when the AppHost server reports a reflection-based
Projects\AppHostRpcClient.cs (2)
38
public static async Task<
AppHostRpcClient
> ConnectAsync(
260
return await
AppHostRpcClient
.ConnectAsync(socketPath, authenticationToken, environment, profilingTelemetry: null, cancellationToken).ConfigureAwait(false);
Projects\AppHostServerSession.cs (1)
313
var connectTask =
AppHostRpcClient
.ConnectAsync(socketPath, _authenticationToken, _environment, _profilingTelemetry, connectCts.Token);