Método IVsDeployableProjectCfg.QueryStartDeploy (UInt32, Int32[], Int32 )
Determina se ou não um projeto é capaz de iniciar uma operação de implantação.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int QueryStartDeploy(
uint dwOptions,
int[] pfSupported,
int[] pfReady
)
int QueryStartDeploy(
unsigned int dwOptions,
array<int>^ pfSupported,
array<int>^ pfReady
)
abstract QueryStartDeploy :
dwOptions:uint32 *
pfSupported:int[] *
pfReady:int[] -> int
Function QueryStartDeploy (
dwOptions As UInteger,
pfSupported As Integer(),
pfReady As Integer()
) As Integer
Parâmetros
- dwOptions
[in] Opções que controlam o processo de implantação.Atualmente, não existem opções definidas e dwOptions é sempre zero.
- pfSupported
[out, opcional] Sinalizador estiver definido como true se o projeto oferece suporte à implantação.
- pfReady
[out, opcional] Sinalizador estiver definido como true se o projeto estiver pronto para iniciar o processo de implantação.Este sinalizador não é utilizado no momento.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsDeployableProjectCfg::QueryStartDeploy(
[in] DWORD dwOptions,
[out, optional] BOOL *pfSupported,
[out, optional] BOOL *pfReady
);
Consulte também
Interface IVsDeployableProjectCfg
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo