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
- plan
Type: Microsoft.Data.Schema.Build.DeploymentPlan
A collection of DeploymentPlanProblem objects.
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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.