You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Aspire.Hosting/IInteractionService.cs
+23-15Lines changed: 23 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -32,9 +32,9 @@ public interface IInteractionService
32
32
/// <param name="options">Optional configuration for the message box interaction.</param>
33
33
/// <param name="cancellationToken">A token to cancel the operation.</param>
34
34
/// <returns>
35
-
/// An <see cref="Interaction{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing <c>true</c> if the user confirmed, <c>false</c> otherwise.
35
+
/// An <see cref="InteractionReference{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing <c>true</c> if the user confirmed, <c>false</c> otherwise.
@@ -44,9 +44,9 @@ public interface IInteractionService
44
44
/// <param name="options">Optional configuration for the message box interaction.</param>
45
45
/// <param name="cancellationToken">A token to cancel the operation.</param>
46
46
/// <returns>
47
-
/// An <see cref="Interaction{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing <c>true</c> if the user accepted, <c>false</c> otherwise.
47
+
/// An <see cref="InteractionReference{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing <c>true</c> if the user accepted, <c>false</c> otherwise.
@@ -84,9 +84,9 @@ public interface IInteractionService
84
84
/// <param name="options">Optional configuration for the input dialog interaction.</param>
85
85
/// <param name="cancellationToken">A token to cancel the operation.</param>
86
86
/// <returns>
87
-
/// An <see cref="Interaction{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing the user's inputs as an <see cref="InteractionInputCollection"/>.
87
+
/// An <see cref="InteractionReference{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing the user's inputs as an <see cref="InteractionInputCollection"/>.
@@ -96,9 +96,9 @@ public interface IInteractionService
96
96
/// <param name="options">Optional configuration for the notification interaction.</param>
97
97
/// <param name="cancellationToken">A token to cancel the operation.</param>
98
98
/// <returns>
99
-
/// An <see cref="Interaction{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing <c>true</c> if the user accepted, <c>false</c> otherwise.
99
+
/// An <see cref="InteractionReference{TResult}"/> that can be awaited to get an <see cref="InteractionResult{T}"/> containing <c>true</c> if the user accepted, <c>false</c> otherwise.
#pragma warning disable ASPIREINTERACTION001// Type is for evaluation purposes only and is subject to change or removal in future updates. Suppress this diagnostic to proceed.
0 commit comments