SkipReason Enumeration

Represents the reason why a file was skipped during change detection or change application.

Namespace:  Microsoft.Synchronization.Files
Assembly:  Microsoft.Synchronization.Files (in Microsoft.Synchronization.Files.dll)

'Declaration
Public Enumeration SkipReason
'Usage
Dim instance As SkipReason

Member nameDescription
UnknownErrorThe skip reason is not known.
ApplicationRequestThe application requested the skip. This occurs when the application sets the SkipChange property to true in its ApplyingChange event handler.
SourceModifiedThe source file has changed since the change was detected.
DestinationModifiedThe destination file has changed since the change was detected.
ReadErrorThe file could not be read.
WriteErrorThe file could not be written.
UnsupportedFileTypeThe file type is not supported.
ConflictLoserWriteErrorThe conflict loser file could not be written.

The SkipReason enumeration is used by the SkippedChange and SkippedFileDetect events.

Show: