27 instantiations of InputsDialogInteractionOptions
Aspire.Hosting (6)
ApplicationModel\ResourceCommandService.cs (1)
714
new
InputsDialogInteractionOptions
Ats\InteractionExports.cs (1)
746
return new
InputsDialogInteractionOptions
IInteractionService.cs (1)
814
internal static new InputsDialogInteractionOptions Default { get; } =
new
();
Orchestrator\ParameterProcessor.cs (3)
357
new
InputsDialogInteractionOptions
396
new
InputsDialogInteractionOptions
618
new
InputsDialogInteractionOptions
Aspire.Hosting.Azure (7)
Provisioning\Internal\PublishModeProvisioningContextProvider.cs (6)
167
new
InputsDialogInteractionOptions
193
new
InputsDialogInteractionOptions
266
new
InputsDialogInteractionOptions
292
new
InputsDialogInteractionOptions
368
new
InputsDialogInteractionOptions
458
new
InputsDialogInteractionOptions
Provisioning\Internal\RunModeProvisioningContextProvider.cs (1)
283
new
InputsDialogInteractionOptions
Aspire.Hosting.Tests (2)
InteractionServiceTests.cs (2)
366
new
InputsDialogInteractionOptions
1023
var options = new
InputsDialogInteractionOptions
Publishers.AppHost (2)
DistributedApplicationBuilderExtensions.cs (2)
105
new
InputsDialogInteractionOptions
156
new
()
Stress.AppHost (10)
InteractionCommands.cs (10)
63
_ = await interactionService.PromptInputAsync("Text <strong>request</strong>", "Provide **your** name. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce id massa arcu. Morbi ac risus eget augue venenatis hendrerit. Morbi posuere, neque id efficitur ultrices, velit augue suscipit ante, vitae lacinia elit risus nec dui. For more information about the `IInteractionService`, see https://learn.microsoft.com.", inputHasMarkdown, new
InputsDialogInteractionOptions
{ EnableMessageMarkdown = true });
64
_ = await interactionService.PromptInputAsync("Text <strong>request</strong>", "Provide **your** name.\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce id massa arcu. Morbi ac risus eget augue venenatis hendrerit. Morbi posuere, neque id efficitur ultrices, velit augue suscipit ante, vitae lacinia elit risus nec dui.\r\n\r\nFor more information about the `IInteractionService`, see https://learn.microsoft.com.", inputHasMarkdown, new
InputsDialogInteractionOptions
{ EnableMessageMarkdown = true });
101
new
InputsDialogInteractionOptions
{ EnableMessageMarkdown = true });
113
options: new
InputsDialogInteractionOptions
250
options: new
InputsDialogInteractionOptions
393
options: new
InputsDialogInteractionOptions
493
options: new
InputsDialogInteractionOptions
558
options: new
InputsDialogInteractionOptions
{ ShowDismiss = showDismiss },
753
new
InputsDialogInteractionOptions
1050
options: new
InputsDialogInteractionOptions
{ EnableMessageMarkdown = true },
37 references to InputsDialogInteractionOptions
Aspire.Hosting (15)
Ats\InteractionExports.cs (1)
744
internal
InputsDialogInteractionOptions
ToOptions()
Dashboard\DashboardServiceData.cs (2)
214
var
options = (
InputsDialogInteractionOptions
)interaction.Options;
IInteractionService.cs (4)
60
Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, string inputLabel, string placeHolder,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default);
73
Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, InteractionInput input,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default);
86
Task<InteractionResult<InteractionInputCollection>> PromptInputsAsync(string title, string? message, IReadOnlyList<InteractionInput> inputs,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default);
814
internal static new
InputsDialogInteractionOptions
Default { get; } = new();
InteractionService.cs (6)
138
public async Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, string inputLabel, string placeHolder,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
143
public async Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, InteractionInput input,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
154
public async Task<InteractionResult<InteractionInputCollection>> PromptInputsAsync(string title, string? message, IReadOnlyList<InteractionInput> inputs,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
193
options ??=
InputsDialogInteractionOptions
.Default;
632
var
options = (
InputsDialogInteractionOptions
)interactionState.Options;
Pipelines\PipelineActivityReporter.cs (2)
414
var
options = (
InputsDialogInteractionOptions
)interaction.Options;
Aspire.Hosting.Azure.Tests (9)
AzureEnvironmentResourceExtensionsTests.cs (2)
467
var
inputOptions = Assert.IsType<
InputsDialogInteractionOptions
>(inputs.Options);
ProvisioningContextProviderTests.cs (4)
346
var
interactionOptions = Assert.IsType<
InputsDialogInteractionOptions
>(inputsInteraction.Options);
461
var
inputOptions = Assert.IsType<
InputsDialogInteractionOptions
>(inputsInteraction.Options);
tests\Shared\TestInteractionService.cs (3)
32
public Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, string inputLabel, string placeHolder,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
37
public async Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, InteractionInput input,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
45
public async Task<InteractionResult<InteractionInputCollection>> PromptInputsAsync(string title, string? message, IReadOnlyList<InteractionInput> inputs,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Browsers.Tests (3)
tests\Shared\TestInteractionService.cs (3)
32
public Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, string inputLabel, string placeHolder,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
37
public async Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, InteractionInput input,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
45
public async Task<InteractionResult<InteractionInputCollection>> PromptInputsAsync(string title, string? message, IReadOnlyList<InteractionInput> inputs,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.DevTunnels.Tests (3)
tests\Shared\TestInteractionService.cs (3)
32
public Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, string inputLabel, string placeHolder,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
37
public async Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, InteractionInput input,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
45
public async Task<InteractionResult<InteractionInputCollection>> PromptInputsAsync(string title, string? message, IReadOnlyList<InteractionInput> inputs,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.RemoteHost.Tests (3)
tests\Shared\TestInteractionService.cs (3)
32
public Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, string inputLabel, string placeHolder,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
37
public async Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, InteractionInput input,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
45
public async Task<InteractionResult<InteractionInputCollection>> PromptInputsAsync(string title, string? message, IReadOnlyList<InteractionInput> inputs,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (4)
InteractionServiceTests.cs (1)
1023
var
options = new InputsDialogInteractionOptions
tests\Shared\TestInteractionService.cs (3)
32
public Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, string inputLabel, string placeHolder,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
37
public async Task<InteractionResult<InteractionInput>> PromptInputAsync(string title, string? message, InteractionInput input,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)
45
public async Task<InteractionResult<InteractionInputCollection>> PromptInputsAsync(string title, string? message, IReadOnlyList<InteractionInput> inputs,
InputsDialogInteractionOptions
? options = null, CancellationToken cancellationToken = default)