IVsAppContainerProjectDeployCallback::OnEndDeploy Method (Boolean, String^, String^)

 

Indicates that the asynchronous deployment process has finished.

Namespace:   Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.11.0 (in Microsoft.VisualStudio.Shell.Interop.11.0.dll)

void OnEndDeploy(
	bool successful,
	String^ deployedPackageMoniker,
	String^ deployedAppUserModelID
)

Parameters

successful
Type: System::Boolean

[in] Indicates whether the asynchronous deployment process succeeded or failed. This parameter is true if the process succeeded.

deployedPackageMoniker
Type: System::String^

[in] The moniker of the deployed package.

deployedAppUserModelID
Type: System::String^

[in] The deployed application’s user model identifier.

This method is always called when the service finishes the asynchronous deployment process if StartDeployAsync succeeds. If StartDeployAsync fails, this method is not called.

Return to top
Show: