Determines whether or not a project is able to check if the current build is up to date.
Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function QueryStartUpToDateCheck ( _
    dwOptions As UInteger, _
    <OutAttribute> pfSupported As Integer(), _
    <OutAttribute> pfReady As Integer() _
) As Integer
int QueryStartUpToDateCheck(
    uint dwOptions,
    int[] pfSupported,
    int[] pfReady
)
int QueryStartUpToDateCheck(
    [InAttribute] unsigned int dwOptions, 
    [OutAttribute] array<int>^ pfSupported, 
    [OutAttribute] array<int>^ pfReady
)
abstract QueryStartUpToDateCheck : 
        dwOptions:uint32 * 
        pfSupported:int[] byref * 
        pfReady:int[] byref -> int
function QueryStartUpToDateCheck(
    dwOptions : uint, 
    pfSupported : int[], 
    pfReady : int[]
) : int
Parameters
- dwOptions 
 Type: UInt32- [in] Options governing the up-to-date check. This parameter can contain values from VsUpToDateCheckFlags and VsUpToDateCheckFlags2. 
- pfSupported 
 Type: array<Int32[]- [out, optional] Pointer to the flag that is set to true if the project supports checking if the current build is up to date. 
- pfReady 
 Type: array<Int32[]- [out, optional] Pointer to the flag that is set to true if the project is ready to start the up-to-date check. This flag is currently unused. 
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsBuildableProjectCfg::QueryStartUpToDateCheck(
   [in] DWORD dwOptions,
   [out, optional] BOOL *pfSupported,
   [out, optional] BOOL *pfReady
);
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.