1 write to Reporter
Aspire.Hosting (1)
Pipelines\ReportingStep.cs (1)
22Reporter = reporter;
20 references to Reporter
Aspire.Hosting (20)
Pipelines\ReportingStep.cs (16)
96if (Reporter is null) 101return await Reporter.CreateTaskAsync(this, statusText, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false); 109if (Reporter is null) 114return await Reporter.CreateTaskAsync(this, statusText.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false); 122if (Reporter is null) 127Reporter.Log(this, logLevel, message, enableMarkdown); 133if (Reporter is null) 138Reporter.Log(this, logLevel, message, enableMarkdown: false); 146if (Reporter is null) 151Reporter.Log(this, logLevel, message.Value, enableMarkdown: true); 157if (Reporter is null) 162await Reporter.CompleteStepAsync(this, completionText, completionState, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false); 170if (Reporter is null) 175await Reporter.CompleteStepAsync(this, completionText.Value, completionState, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false); 183if (Reporter is null) 208await Reporter.CompleteStepAsync(this, completionText, finalState, enableMarkdown: false, cancellationToken: CancellationToken.None).ConfigureAwait(false);
Pipelines\ReportingTask.cs (4)
57await ParentStep.Reporter.UpdateTaskAsync(this, statusText, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false); 64await ParentStep.Reporter.UpdateTaskAsync(this, statusText.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false); 70await ParentStep.Reporter.CompleteTaskAsync(this, completionState, completionMessage, enableMarkdown: false, cancellationToken: cancellationToken).ConfigureAwait(false); 77await ParentStep.Reporter.CompleteTaskAsync(this, completionState, completionMessage.Value, enableMarkdown: true, cancellationToken: cancellationToken).ConfigureAwait(false);