Xceed .NET Libraries Documentation
Analysis Event


Xceed.Synchronization Assembly > Xceed.Synchronization Namespace > SynchronizationEvents Class : Analysis Event
Raised when the analysis is being performed.
Syntax
'Declaration
 
Public Event Analysis As AnalysisEventHandler
'Usage
 
Dim instance As SynchronizationEvents
Dim handler As AnalysisEventHandler
 
AddHandler instance.Analysis, handler
public event AnalysisEventHandler Analysis
Event Data

The event handler receives an argument of type SynchronizationAnalysisEventArgs containing data related to this event. The following SynchronizationAnalysisEventArgs properties provide information specific to this event.

PropertyDescription
Gets the actions to be performed on the files during the synchronization.  
Gets or sets a boolean value indicating whether the synchronization should be cancelled.  
Gets the reasons for any conflicts that arose during the conflict detection of the synchronization.  
Gets the files that are to be analyzed.  
Gets a boolean value indicating whether ConflictReasons contains one or more values that denote a conflict.  
Gets a boolean value indicating whether this is the first synchronization with the current items. (Inherited from Xceed.Synchronization.SynchronizationEventArgs)
Gets a boolean value indicating whether the current synchronization is part of a larger synchronization job where folders are being synchronized. (Inherited from )
Gets the date and time of the last synchronization.  
Gets or sets the master file, in relation to Files.  
Gets or sets the index of the master file, in relation to Files.  
Gets or set the SynchronizationOptions that will be used for the current synchronization job. (Inherited from )
Gets a boolean value indicating whether Actions contains one or more values that denote actions other than doing nothing or suspended action.  
Gets a boolean value indicating whether Actions contains one or more values that denote actions other than SynchronizationAction.None.  
Gets the name of the synchronization session.  
Gets or sets the opaque data that will be sent back to the event handler whenever an event is raised. (Inherited from )
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also