-
Notifications
You must be signed in to change notification settings - Fork 0
RetryInfo
ZjzMisaka edited this page Dec 24, 2024
·
1 revision
[取得のみ] 現在の再試行回数.
int CurrentRetryCount;
[取得のみ] 最大再試行回数. RetryOption.MaxRetryCountと同じ.
int MaxRetryCount;
[取得のみ] 制限が存在するかどうか. RetryOption.RetryPolicyと同じ.
RetryPolicy RetryPolicy;
trueに設定されている場合、たとえ再試行回数が上限に達していない場合や無限再試行の場合でも、以降の再試行は中止されます.
bool StopRetry;