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;
}
}
}