Share via


SchemaDeployment.OnVerifyPlan Method

Called during deployment execution after the deployment plan has been created to allow custom classes to do additional processing for a custom DatabaseSchemaProvider.

Namespace:  Microsoft.Data.Schema.Build
Assembly:  Microsoft.Data.Schema (in Microsoft.Data.Schema.dll)

Syntax

'Declaration
Protected Overridable Function OnVerifyPlan ( _
    plan As DeploymentPlan _
) As ICollection(Of DeploymentPlanProblem)
protected virtual ICollection<DeploymentPlanProblem> OnVerifyPlan(
    DeploymentPlan plan
)
protected:
virtual ICollection<DeploymentPlanProblem^>^ OnVerifyPlan(
    DeploymentPlan^ plan
)
abstract OnVerifyPlan : 
        plan:DeploymentPlan -> ICollection<DeploymentPlanProblem> 
override OnVerifyPlan : 
        plan:DeploymentPlan -> ICollection<DeploymentPlanProblem> 
protected function OnVerifyPlan(
    plan : DeploymentPlan
) : ICollection<DeploymentPlanProblem>

Parameters

Return Value

Type: System.Collections.Generic.ICollection<DeploymentPlanProblem>
A list of DataSchemaError objects that represent the errors encountered during the verification process. The default implementation returns nulla null reference (Nothing in Visual Basic).

.NET Framework Security

See Also

Reference

SchemaDeployment Class

Microsoft.Data.Schema.Build Namespace

DatabaseSchemaProvider

DataSchemaError