Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Provides a way to modify the existing plan by adding a step after the existing step.
Namespace: Microsoft.SqlServer.Dac.Deployment
Assembly: Microsoft.SqlServer.Dac.Extensions (in Microsoft.SqlServer.Dac.Extensions.dll)
Syntax
'Declaration
Protected Sub AddAfter ( _
handle As DeploymentPlanHandle, _
step As DeploymentStep, _
newStep As DeploymentStep _
)
'Usage
Dim handle As DeploymentPlanHandle
Dim step As DeploymentStep
Dim newStep As DeploymentStep
Me.AddAfter(handle, step, newStep)
protected void AddAfter(
DeploymentPlanHandle handle,
DeploymentStep step,
DeploymentStep newStep
)
protected:
void AddAfter(
DeploymentPlanHandle^ handle,
DeploymentStep^ step,
DeploymentStep^ newStep
)
member AddAfter :
handle:DeploymentPlanHandle *
step:DeploymentStep *
newStep:DeploymentStep -> unit
protected function AddAfter(
handle : DeploymentPlanHandle,
step : DeploymentStep,
newStep : DeploymentStep
)
Parameters
- handle
Type: Microsoft.SqlServer.Dac.Deployment.DeploymentPlanHandle
The DeploymentPlanHandle for the plan.
- step
Type: Microsoft.SqlServer.Dac.Deployment.DeploymentStep
Identifies the DeploymentStep after which the newStep will be added.
- newStep
Type: Microsoft.SqlServer.Dac.Deployment.DeploymentStep
The DeploymentStep to be added.