3 types derived from InteractionOptions
Aspire.Hosting (3)
IInteractionService.cs (3)
175public class InputsDialogInteractionOptions : InteractionOptions 231public class MessageBoxInteractionOptions : InteractionOptions 245public class MessageBarInteractionOptions : InteractionOptions
1 instantiation of InteractionOptions
Aspire.Hosting (1)
IInteractionService.cs (1)
303internal static InteractionOptions Default { get; } = new();
4 references to InteractionOptions
Aspire.Hosting (3)
IInteractionService.cs (1)
303internal static InteractionOptions Default { get; } = new();
InteractionService.cs (2)
342public InteractionOptions Options { get; } 344public Interaction(string title, string? message, InteractionOptions options, InteractionInfoBase interactionInfo, CancellationToken cancellationToken)
Aspire.Hosting.Tests (1)
TestInteractionService.cs (1)
10internal sealed record InteractionData(string Title, string? Message, IReadOnlyList<InteractionInput> Inputs, InteractionOptions? Options, TaskCompletionSource<object> CompletionTcs);