WorkflowRuntimeSection.ValidateOnCreate Property

Definition

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

public:
 property bool ValidateOnCreate { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("ValidateOnCreate", DefaultValue=true)]
public bool ValidateOnCreate { get; set; }
[<System.Configuration.ConfigurationProperty("ValidateOnCreate", DefaultValue=true)>]
member this.ValidateOnCreate : bool with get, set
Public Property ValidateOnCreate As Boolean

Property Value

true if validation occurs on creation; otherwise, false.

Attributes

Remarks

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.

Applies to