Método IVsBuildableProjectCfg.QueryStartUpToDateCheck (UInt32, Int32[], Int32 )

 

Publicado: abril de 2016

Determina se ou não um projeto é capaz de verificar se a compilação atual é atualizada.

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

Sintaxe

int QueryStartUpToDateCheck(
    uint dwOptions,
    int[] pfSupported,
    int[] pfReady
)
int QueryStartUpToDateCheck(
    unsigned int dwOptions,
    array<int>^ pfSupported,
    array<int>^ pfReady
)
abstract QueryStartUpToDateCheck : 
        dwOptions:uint32 *
        pfSupported:int[] *
        pfReady:int[] -> int
Function QueryStartUpToDateCheck (
    dwOptions As UInteger,
    pfSupported As Integer(),
    pfReady As Integer()
) As Integer

Parâmetros

  • dwOptions
    [in] Opções que controlam a verificação atualizada.Atualmente, não existem opções definidas e dwOptions é sempre zero.
  • pfSupported
    [out, opcional] Ponteiro para o sinalizador é definido como true se o projeto oferece suporte para verificar se a compilação atual está atualizada.
  • pfReady
    [out, opcional] Ponteiro para o sinalizador é definido como true se o projeto estiver pronto para iniciar a verificação atualizada.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 IVsBuildableProjectCfg::QueryStartUpToDateCheck(
   [in] DWORD dwOptions,
   [out, optional] BOOL *pfSupported,
   [out, optional] BOOL *pfReady
);

Consulte também

Interface IVsBuildableProjectCfg
Namespace Microsoft.VisualStudio.Shell.Interop

Retornar ao topo