IVsAppContainerProjectDeployCallback.OnEndDeploy Method

Definition

Indicates that the asynchronous deployment process has finished.

public:
 void OnEndDeploy(bool successful, System::String ^ deployedPackageMoniker, System::String ^ deployedAppUserModelID);
public:
 void OnEndDeploy(bool successful, Platform::String ^ deployedPackageMoniker, Platform::String ^ deployedAppUserModelID);
void OnEndDeploy(bool successful, std::wstring const & deployedPackageMoniker, std::wstring const & deployedAppUserModelID);
public void OnEndDeploy (bool successful, string deployedPackageMoniker, string deployedAppUserModelID);
abstract member OnEndDeploy : bool * string * string -> unit
Public Sub OnEndDeploy (successful As Boolean, deployedPackageMoniker As String, deployedAppUserModelID As String)

Parameters

successful
Boolean

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

deployedPackageMoniker
String

[in] The moniker of the deployed package.

deployedAppUserModelID
String

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

Remarks

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

Applies to