public ExponentialBackoffConnectionSchedule()

in src/Serilog.Sinks.AzureDataExplorer/Durable/ExponentialBackoffConnectionSchedule.cs [32:37]


        public ExponentialBackoffConnectionSchedule(TimeSpan period)
        {
            if (period < TimeSpan.Zero) throw new ArgumentOutOfRangeException(nameof(period), "The connection retry period must be a positive timespan");

            m_period = period;
        }