IDeploymentStep.Initialize(IDeploymentStepInfo) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.