WorkflowRuntimeSection.ValidateOnCreate 属性

定义

获取或设置一个值,该值指示是否在创建工作流实例时执行验证。

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

属性值

Boolean

如果创建时发生验证,则为 true;否则为 false

属性

注解

如果将此属性设置为 true,则在每次调用 CreateWorkflow 时,都会执行工作流验证。 如果发现验证错误,则引发 WorkflowValidationFailedException

如果将此属性设置为 false,则 CreateWorkflow 会创建工作流实例并跳过验证。 在这种情况下,宿主应用程序必须保证已正确配置了工作流,否则会发生运行时错误。

此属性的默认值为 true

适用于