Microsoft.Data.SqlClient.SqlRetryingEventArgs
Represents the set of arguments passed to the Retrying event.
namespace Microsoft.Data.SqlClient
{
public sealed class SqlRetryingEventArgs : EventArgs
{
public int RetryCount { get; }
public TimeSpan Delay { get; }
public bool Cancel { get; set; }
public IList<Exception> Exceptions { get; }
public SqlRetryingEventArgs(int retryCount, TimeSpan delay, IList<Exception> exceptions);
}
}