Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Adds a new deployment step to the plan before an existing step.
Namespace: Microsoft.SqlServer.Dac.Deployment
Assembly: Microsoft.SqlServer.Dac.Extensions (in Microsoft.SqlServer.Dac.Extensions.dll)
Syntax
'Declaration
Public MustOverride Sub AddBefore ( _
step As DeploymentStep, _
newStep As DeploymentStep _
)
'Usage
Dim instance As DeploymentPlan
Dim step As DeploymentStep
Dim newStep As DeploymentStep
instance.AddBefore(step, newStep)
public abstract void AddBefore(
DeploymentStep step,
DeploymentStep newStep
)
public:
virtual void AddBefore(
DeploymentStep^ step,
DeploymentStep^ newStep
) abstract
abstract AddBefore :
step:DeploymentStep *
newStep:DeploymentStep -> unit
public abstract function AddBefore(
step : DeploymentStep,
newStep : DeploymentStep
)
Parameter
- step
Typ: Microsoft.SqlServer.Dac.Deployment.DeploymentStep
Identifies the DeploymentStep before which the newStep will be added.
- newStep
Typ: Microsoft.SqlServer.Dac.Deployment.DeploymentStep
The DeploymentStep to be added.