<PackageReference Include="Polly.Core" Version="8.4.0" />

PipelineExecutedArguments

Arguments that indicate the pipeline execution started.
using System; namespace Polly.Telemetry { public readonly struct PipelineExecutedArguments { public TimeSpan Duration { get; } public PipelineExecutedArguments(TimeSpan duration) { Duration = duration; } } }