SqlRetryingEventArgs(Int32, TimeSpan, IList<Exception>) 构造函数

定义

初始化 SqlRetryingEventArgs 类的新实例。

public:
 SqlRetryingEventArgs(int retryCount, TimeSpan delay, System::Collections::Generic::IList<Exception ^> ^ exceptions);
public SqlRetryingEventArgs (int retryCount, TimeSpan delay, System.Collections.Generic.IList<Exception> exceptions);
new Microsoft.Data.SqlClient.SqlRetryingEventArgs : int * TimeSpan * System.Collections.Generic.IList<Exception> -> Microsoft.Data.SqlClient.SqlRetryingEventArgs
Public Sub New (retryCount As Integer, delay As TimeSpan, exceptions As IList(Of Exception))

参数

retryCount
Int32

当前重试尝试计数。

delay
TimeSpan

指示在调用下一次迭代之前当前线程将挂起多长时间的延迟。

exceptions
IList<Exception>

自第一次重试以来导致重试逻辑重新执行函数的异常列表。

适用于