IVsAppContainerProjectDeployOperation.StopDeploy(Boolean) 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.
Cancels the deployment operation. Calling this method causes the deployment process to be terminated as soon as possible.
public:
void StopDeploy(bool fSync);
public:
void StopDeploy(bool fSync);
void StopDeploy(bool fSync);
public void StopDeploy (bool fSync);
abstract member StopDeploy : bool -> unit
Public Sub StopDeploy (fSync As Boolean)
Parameters
- fSync
- Boolean
[in] Indicates whether the cancelation is asynchronous. If this parameter is set to false
, the cancelation is asynchronous and the caller must wait for an OnEndDeploy(Boolean, String, String) notification. If this parameter is set to true
, this method does not return until the cancelation is complete.
Remarks
This method is safe to access from any thread.