17 instantiations of ProgressInteractionOptions
Aspire.Hosting (3)
ApplicationModel\ResourceCommandService.cs (1)
432
var options = new
ProgressInteractionOptions
Ats\InteractionExports.cs (1)
788
return new
ProgressInteractionOptions
IInteractionService.cs (1)
918
internal static ProgressInteractionOptions CreateDefault() =>
new
();
Aspire.Hosting.Tests (7)
InteractionServiceTests.cs (7)
177
() => interactionService.PromptProgressAsync("Please wait", new
ProgressInteractionOptions
{ Title = "Working..." })).DefaultTimeout();
1135
var result = await interactionService.PromptProgressAsync("Please wait", new
ProgressInteractionOptions
1157
var resultTask = interactionService.PromptProgressAsync("Please wait", new
ProgressInteractionOptions
1190
var resultTask = interactionService.PromptProgressAsync("Please wait", new
ProgressInteractionOptions
1224
var resultTask = interactionService.PromptProgressAsync("Please wait", new
ProgressInteractionOptions
1257
var resultTask = interactionService.PromptProgressAsync("Please wait", new
ProgressInteractionOptions
{ Title = "Working..." }, cancellationToken: cts.Token);
1276
var resultTask = interactionService.PromptProgressAsync("Please wait", new
ProgressInteractionOptions
Stress.AppHost (7)
InteractionCommands.cs (7)
801
new
ProgressInteractionOptions
830
options: new
ProgressInteractionOptions
859
new
ProgressInteractionOptions
{ Title = "Processing" },
881
new
ProgressInteractionOptions
904
options: new
ProgressInteractionOptions
927
new
ProgressInteractionOptions
952
new
ProgressInteractionOptions
16 references to ProgressInteractionOptions
Aspire.Hosting (7)
ApplicationModel\ResourceCommandService.cs (1)
432
var
options = new ProgressInteractionOptions
Ats\InteractionExports.cs (1)
786
internal
ProgressInteractionOptions
ToOptions()
IInteractionService.cs (3)
108
/// If <see cref="
ProgressInteractionOptions
.Work"/> is provided, the dialog remains open while the callback executes
125
Task<InteractionResult<bool>> PromptProgressAsync(string message,
ProgressInteractionOptions
? options = null, CancellationToken cancellationToken = default);
918
internal static
ProgressInteractionOptions
CreateDefault() => new();
InteractionService.cs (2)
291
public async Task<InteractionResult<bool>> PromptProgressAsync(string message,
ProgressInteractionOptions
? options = null, CancellationToken cancellationToken = default)
300
options ??=
ProgressInteractionOptions
.CreateDefault();
Aspire.Hosting.Azure.Tests (1)
tests\Shared\TestInteractionService.cs (1)
76
public async Task<InteractionResult<bool>> PromptProgressAsync(string message,
ProgressInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Browsers.Tests (1)
tests\Shared\TestInteractionService.cs (1)
76
public async Task<InteractionResult<bool>> PromptProgressAsync(string message,
ProgressInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.DevTunnels.Tests (1)
tests\Shared\TestInteractionService.cs (1)
76
public async Task<InteractionResult<bool>> PromptProgressAsync(string message,
ProgressInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.RemoteHost.Tests (1)
tests\Shared\TestInteractionService.cs (1)
76
public async Task<InteractionResult<bool>> PromptProgressAsync(string message,
ProgressInteractionOptions
? options = null, CancellationToken cancellationToken = default)
Aspire.Hosting.Tests (5)
AtsInteractionExportsTests.cs (4)
35
var
options = Assert.IsType<
ProgressInteractionOptions
>(interaction.Options);
60
var
options = Assert.IsType<
ProgressInteractionOptions
>(interaction.Options);
tests\Shared\TestInteractionService.cs (1)
76
public async Task<InteractionResult<bool>> PromptProgressAsync(string message,
ProgressInteractionOptions
? options = null, CancellationToken cancellationToken = default)