WorkflowRuntimeSection::ValidateOnCreate Property

 

Gets or sets a value that indicates whether validation occurs on the creation of the workflow instance.

Namespace:   System.Workflow.Runtime.Configuration
Assembly:  System.Workflow.Runtime (in System.Workflow.Runtime.dll)

public:
[ConfigurationPropertyAttribute("ValidateOnCreate", DefaultValue = true)]
property bool ValidateOnCreate {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

true if validation occurs on creation; otherwise, false.

When this property is set to true, the workflow validation is executed every time CreateWorkflow is called. If validation errors are found, a WorkflowValidationFailedException is thrown.

When this property is set to false, CreateWorkflow creates a workflow instance and skips validation. In this case, the host application must guarantee that the workflow is properly configured or the runtime error occurs.

The default value for this property is true.

.NET Framework
Available since 3.0
Return to top
Show: