DeleteItemActivityValidator.Validate Method

Verifies that the specified activity is valid.

Namespace:  Microsoft.SharePoint.WorkflowActions
Assembly:  Microsoft.SharePoint.WorkflowActions (in Microsoft.SharePoint.WorkflowActions.dll)

Syntax

'Declaration
Public Overrides Function Validate ( _
    manager As ValidationManager, _
    obj As Object _
) As ValidationErrorCollection
'Usage
Dim instance As DeleteItemActivityValidator
Dim manager As ValidationManager
Dim obj As Object
Dim returnValue As ValidationErrorCollection

returnValue = instance.Validate(manager, _
    obj)
public override ValidationErrorCollection Validate(
    ValidationManager manager,
    Object obj
)

Parameters

  • obj
    Type: System.Object

    The workflow activity that must be validated.

Return Value

Type: System.Workflow.ComponentModel.Compiler.ValidationErrorCollection
A ValidationErrorCollection object that contains a collection of ValidationError objects. Any errors or warnings encountered during the validation of the workflow activity are stored in the collection.

Remarks

The Validate method enforces the code rules that govern the workflow activity that is being validated.

See Also

Reference

DeleteItemActivityValidator Class

DeleteItemActivityValidator Members

Microsoft.SharePoint.WorkflowActions Namespace

Other Resources

ActivityValidator Class

ValidationManager