Implemented interface member:
method
CreateStepAsync
Aspire.Hosting.Pipelines.IPipelineActivityReporter.CreateStepAsync(System.String, System.String, System.Int32, System.Threading.CancellationToken)
3 references to CreateStepAsync
Aspire.Hosting (1)
Pipelines\PipelineActivityReporter.cs (1)
59return await CreateStepAsync(title, parentStepId: null, hierarchyLevel: 0, cancellationToken).ConfigureAwait(false);
Aspire.Hosting.Tests (2)
Publishing\PipelineActivityReporterTests.cs (2)
61var step = await reporter.CreateStepAsync("Child Step", "parent-step-id", 2, CancellationToken.None); 91var childStep = Assert.IsType<ReportingStep>(await reporter.CreateStepAsync("Child Step", "Parent Step", 1, CancellationToken.None));