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: Boolean[in] Indicates whether the asynchronous deployment process succeeded or failed. This parameter is true if the process succeeded.
deployedPackageMoniker
Type: String[in] The moniker of the deployed package.
deployedAppUserModelID
Type: 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
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.