IVsBuildableProjectCfg.StartUpToDateCheck Method
Requests that a project begin an up-to-date check to determine whether or not 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 StartUpToDateCheck ( _
pIVsOutputWindowPane As IVsOutputWindowPane, _
dwOptions As UInteger _
) As Integer
int StartUpToDateCheck(
IVsOutputWindowPane pIVsOutputWindowPane,
uint dwOptions
)
int StartUpToDateCheck(
[InAttribute] IVsOutputWindowPane^ pIVsOutputWindowPane,
[InAttribute] unsigned int dwOptions
)
abstract StartUpToDateCheck :
pIVsOutputWindowPane:IVsOutputWindowPane *
dwOptions:uint32 -> int
function StartUpToDateCheck(
pIVsOutputWindowPane : IVsOutputWindowPane,
dwOptions : uint
) : int
Parameters
pIVsOutputWindowPane
Type: Microsoft.VisualStudio.Shell.Interop.IVsOutputWindowPane[in] Pointer to the IVsOutputWindowPane interface that can be used to display status during the up-to-date check.
dwOptions
Type: UInt32[in] Options governing the up-to-date check. This parameter can contain values from VsUpToDateCheckFlags and VsUpToDateCheckFlags2.
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::StartUpToDateCheck(
[in] IVsOutputWindowPane *pIVsOutputWindowPane,
[in] DWORD dwOptions
);
.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.