DeploymentPlan.AddLast Method (IEnumerable<DeploymentStep>)
Adds a deployment step at the end.
Namespace: Microsoft.SqlServer.Dac.Deployment
Assembly: Microsoft.SqlServer.Dac.Extensions (in Microsoft.SqlServer.Dac.Extensions.dll)
Syntax
'Declaration
Public MustOverride Sub AddLast ( _
steps As IEnumerable(Of DeploymentStep) _
)
'Usage
Dim instance As DeploymentPlan
Dim steps As IEnumerable(Of DeploymentStep)
instance.AddLast(steps)
public abstract void AddLast(
IEnumerable<DeploymentStep> steps
)
public:
virtual void AddLast(
IEnumerable<DeploymentStep^>^ steps
) abstract
abstract AddLast :
steps:IEnumerable<DeploymentStep> -> unit
public abstract function AddLast(
steps : IEnumerable<DeploymentStep>
)
Parameters
- steps
Type: System.Collections.Generic.IEnumerable<DeploymentStep>
Enumerates the DeploymentStep before which the newStep will be added.