Provides a way for subclasses to modify the plan by adding a step after the specified step.
命名空间: Microsoft.SqlServer.Dac.Deployment
程序集: Microsoft.SqlServer.Dac.Extensions(在 Microsoft.SqlServer.Dac.Extensions.dll 中)
语法
声明
Protected Sub AddBefore ( _
handle As DeploymentPlanHandle, _
step As DeploymentStep, _
newStep As DeploymentStep _
)
用法
Dim handle As DeploymentPlanHandle
Dim step As DeploymentStep
Dim newStep As DeploymentStep
Me.AddBefore(handle, step, newStep)
protected void AddBefore(
DeploymentPlanHandle handle,
DeploymentStep step,
DeploymentStep newStep
)
protected:
void AddBefore(
DeploymentPlanHandle^ handle,
DeploymentStep^ step,
DeploymentStep^ newStep
)
member AddBefore :
handle:DeploymentPlanHandle *
step:DeploymentStep *
newStep:DeploymentStep -> unit
protected function AddBefore(
handle : DeploymentPlanHandle,
step : DeploymentStep,
newStep : DeploymentStep
)
参数
- handle
类型:Microsoft.SqlServer.Dac.Deployment.DeploymentPlanHandle
The DeploymentPlanHandle for the plan.
- step
类型:Microsoft.SqlServer.Dac.Deployment.DeploymentStep
Identifies the DeploymentStep before which the newStep will be added.
- newStep
类型:Microsoft.SqlServer.Dac.Deployment.DeploymentStep
The DeploymentStep to be added.