IDeploymentStep.Initialize(IDeploymentStepInfo) Method

Definition

Initializes the deployment step.

public:
 void Initialize(Microsoft::VisualStudio::SharePoint::Deployment::IDeploymentStepInfo ^ stepInfo);
public void Initialize (Microsoft.VisualStudio.SharePoint.Deployment.IDeploymentStepInfo stepInfo);
abstract member Initialize : Microsoft.VisualStudio.SharePoint.Deployment.IDeploymentStepInfo -> unit
Public Sub Initialize (stepInfo As IDeploymentStepInfo)

Parameters

stepInfo
IDeploymentStepInfo

An object that contains information about the deployment step.

Remarks

Visual Studio calls this method when the deployment step is first initialized. This happens only once per Visual Studio instance.

In your implementation of Initialize, set properties of the stepInfo parameter to specify the name, description, and other details for the deployment step.

This method is always executed from the UI thread.

Applies to