12 writes to State
Aspire.Hosting (7)
Dashboard\DashboardServiceData.cs (3)
162
return new InteractionCompletionState { Complete = true,
State
= request.MessageBox.Result };
164
return new InteractionCompletionState { Complete = true,
State
= request.MessageBar.Result };
185
return new InteractionCompletionState { Complete = true,
State
= inputsInfo.Inputs };
InteractionService.cs (1)
201
result = new InteractionCompletionState { Complete = false,
State
= result.State };
Publishing\PublishingActivityReporter.cs (3)
282
State
= "Cannot prompt interaction while steps are in progress."
335
State
= inputsInfo.Inputs
342
State
= null
Aspire.Hosting.Tests (5)
InteractionServiceTests.cs (5)
31
await CompleteInteractionAsync(interactionService, interaction.InteractionId, new InteractionCompletionState { Complete = true,
State
= true });
96
await CompleteInteractionAsync(interactionService, id1.Value, new InteractionCompletionState { Complete = true,
State
= true });
104
await CompleteInteractionAsync(interactionService, id2.Value, new InteractionCompletionState { Complete = true,
State
= false });
142
var result1 = new InteractionCompletionState { Complete = true,
State
= true };
150
var result2 = new InteractionCompletionState { Complete = true,
State
= false };
5 references to State
Aspire.Hosting (5)
InteractionService.cs (5)
68
var promptState = completion.
State
as bool?;
104
var inputState = completion.
State
as IReadOnlyList<InteractionInput>;
124
var promptState = completion.
State
as bool?;
201
result = new InteractionCompletionState { Complete = false, State = result.
State
};
229
if (result.
State
is IReadOnlyList<InteractionInput> inputs)