Share via


IVsAppContainerProjectDeployCallback.OnEndDeploy Method

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)

Syntax

'Declaration
Sub OnEndDeploy ( _
    successful As Boolean, _
    deployedPackageMoniker As String, _
    deployedAppUserModelID As String _
)
void OnEndDeploy(
    bool successful,
    string deployedPackageMoniker,
    string deployedAppUserModelID
)
void OnEndDeploy(
    [InAttribute] bool successful, 
    [InAttribute] String^ deployedPackageMoniker, 
    [InAttribute] String^ deployedAppUserModelID
)
abstract OnEndDeploy : 
        successful:bool * 
        deployedPackageMoniker:string * 
        deployedAppUserModelID:string -> unit
function OnEndDeploy(
    successful : boolean, 
    deployedPackageMoniker : String, 
    deployedAppUserModelID : String
)

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.

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.

.NET Framework Security

See Also

Reference

IVsAppContainerProjectDeployCallback Interface

Microsoft.VisualStudio.Shell.Interop Namespace