IVsAppContainerProjectDeployEvents::QueryDeployStart Method (String^, Boolean, Boolean, String^)

 

Called before the application deployment begins. This event gives components the opportunity to stop the deployment process or force a local machine deployment.

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

void QueryDeployStart(
	String^ projectUniqueName,
	[OutAttribute] bool% fForceLocalDeployment,
	[OutAttribute] bool% fCancel,
	[OutAttribute] String^% cancelReason
)

Parameters

projectUniqueName
Type: System::String^

[in] The unique name of the project.

fForceLocalDeployment
Type: System::Boolean

[out] Indicates whether to force local deployment. If true, local deployment is forced.

fCancel
Type: System::Boolean

[out] Indicates whether the deployment is canceled. If true, the deployment is canceled.

cancelReason
Type: System::String^

[out] The reason the deployment was canceled.

Return to top
Show: