IVsDeployableProjectCfg.StopDeploy(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Requests that a project stop a deployment operation.
public:
int StopDeploy(int fSync);
public:
int StopDeploy(int fSync);
int StopDeploy(int fSync);
public int StopDeploy (int fSync);
abstract member StopDeploy : int -> int
Public Function StopDeploy (fSync As Integer) As Integer
Parameters
- fSync
- Int32
[in] Flag that is set to true
if deployment should be stopped synchronously and false
if it can be stopped asynchronously.
Returns
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsDeployableProjectCfg::StopDeploy(
[in] BOOL fSync
);
This method is called when a user presses the Cancel button during the deployment process.