3 writes to GetCommandResult
Aspire.Hosting.Foundry (1)
HostedAgent\HostedAgentBuilderExtension.cs (1)
353GetCommandResult = async ctx =>
Aspire.Hosting.Tests (2)
WithHttpCommandTests.cs (2)
704GetCommandResult = resultContext => 766GetCommandResult = resultContext =>
6 references to GetCommandResult
Aspire.Hosting (5)
ApplicationModel\HttpCommandOptions.cs (1)
70/// when <see cref="GetCommandResult"/> is not specified. The default is <see cref="HttpCommandResultMode.None"/>.
ResourceBuilderExtensions.cs (4)
3559/// The <see cref="HttpCommandOptions.GetCommandResult"/> callback will be invoked after the response is received to determine the result of the command invocation. If this callback 3653/// The <see cref="HttpCommandOptions.GetCommandResult"/> callback will be invoked after the response is received to determine the result of the command invocation. If this callback 3743if (commandOptions.GetCommandResult is not null) 3755return await commandOptions.GetCommandResult(resultContext).ConfigureAwait(false);
Aspire.Hosting.RemoteHost.Tests (1)
AtsCapabilityScannerTests.cs (1)
402Assert.DoesNotContain(dto.Properties, p => p.Name == nameof(HttpCommandOptions.GetCommandResult));