alphaleonis / AlphaFS

AlphaFS is a .NET library providing more complete Win32 file system functionality to the .NET platform than the standard System.IO classes.
http://alphafs.alphaleonis.com/
MIT License
562 stars 99 forks source link

Add properties ErrorRetry and ErrorRetryTimeout to DirectoryEnumerationFilters class. #466

Closed Yomodo closed 6 years ago

Yomodo commented 6 years ago
/// <summary>The number of retries, excluding the first attempt. Default is <c>0</c>.</summary>
public int ErrorRetry { get; set; }

/// <summary>The wait time in seconds between retries. Default is <c>10</c> seconds.</summary>
public int ErrorRetryTimeout { get; set; }