Skip to content
Auto
Products

FileSystemLinkSyncFailedEventArgs

Namespace: TagBites.IO
Assembly: TagBites.IO.dll
Product: TagBites.IO v. 2.0.0

Provides data for the FileSystemLinkSynchronizer.SyncFailed event.

public class FileSystemLinkSyncFailedEventArgs : System.EventArgs

Inheritance: EventArgs → FileSystemLinkSyncFailedEventArgs

Gets the number of attempts made so far, starting at one.

public int Attempt { get; }

int

Gets the destination link of the pair that failed to synchronize.

public FileSystemStructureLink Destination { get; }

FileSystemStructureLink

Gets the error that ended the attempt.

public Exception Exception { get; }

Exception

Gets the source link of the pair that failed to synchronize.

public FileSystemStructureLink Source { get; }

FileSystemStructureLink

Gets a value indicating whether the pair is queued for another attempt.

public bool WillRetry { get; }

bool

When false, the pair is abandoned until something changes it again.