IVsAppContainerProjectDeployCallback::OnEndDeploy Method (Boolean, String^, String^)
Visual Studio 2015
Indicates that the asynchronous deployment process has finished.
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.
Show: