IVsDeployableProjectCfg::QueryStartDeploy Method (UInt32, array<Int32>^, array<Int32>^)

 

Determines whether or not a project is able to start a deployment operation.

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

int QueryStartDeploy(
	unsigned int dwOptions,
	array<int>^ pfSupported,
	array<int>^ pfReady
)

Parameters

dwOptions
Type: System::UInt32

[in] Options governing the deployment process. Currently, there are no defined options and dwOptions is always zero.

pfSupported
Type: array<System::Int32>^

[out, optional] Flag that is set to true if the project supports deployment.

pfReady
Type: array<System::Int32>^

[out, optional] Flag that is set to true if the project is ready to start the deployment process. This flag is currently unused.

Return Value

Type: System::Int32

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

From vsshell.idl:

HRESULT IVsDeployableProjectCfg::QueryStartDeploy(
   [in] DWORD dwOptions,
   [out, optional] BOOL *pfSupported,
   [out, optional] BOOL *pfReady
);
Return to top
Show: