Xceed .NET Libraries Documentation
Xceed.Synchronization Assembly / Xceed.Synchronization Namespace / SynchronizationAnalysisEventArgs Class / PerformsActions Property


In This Topic
    PerformsActions Property
    In This Topic
    Gets a boolean value indicating whether Actions contains one or more values that denote actions other than doing nothing or suspended action.
    Syntax
    'Declaration
     
    Public ReadOnly Property PerformsActions As Boolean
    'Usage
     
    Dim instance As SynchronizationAnalysisEventArgs
    Dim value As Boolean
     
    value = instance.PerformsActions
    public bool PerformsActions {get;}

    Property Value

    true if Actions contains one or more values that denote significant actions; false otherwise.
    Remarks

    This property is equivalent to scanning the Actions array looking for values higher than SynchronizationAction.None. This means that suspended actions don't count as actions here.

    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