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.
Adds a new deployment step to the plan after an existing step.
Namespace: Microsoft.SqlServer.Dac.Deployment
Assembly: Microsoft.SqlServer.Dac.Extensions (in Microsoft.SqlServer.Dac.Extensions.dll)
Syntax
'Declaration
Public MustOverride Sub AddAfter ( _
step As DeploymentStep, _
newStep As DeploymentStep _
)
'Usage
Dim instance As DeploymentPlan
Dim step As DeploymentStep
Dim newStep As DeploymentStep
instance.AddAfter(step, newStep)
public abstract void AddAfter(
DeploymentStep step,
DeploymentStep newStep
)
public:
virtual void AddAfter(
DeploymentStep^ step,
DeploymentStep^ newStep
) abstract
abstract AddAfter :
step:DeploymentStep *
newStep:DeploymentStep -> unit
public abstract function AddAfter(
step : DeploymentStep,
newStep : DeploymentStep
)
Parameters
- 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.