Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines if the build manager is busy.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function QueryBuildManagerBusyEx ( _
<OutAttribute> ByRef pdwBuildManagerOperation As UInteger _
) As Integer
int QueryBuildManagerBusyEx(
out uint pdwBuildManagerOperation
)
int QueryBuildManagerBusyEx(
[OutAttribute] unsigned int% pdwBuildManagerOperation
)
abstract QueryBuildManagerBusyEx :
pdwBuildManagerOperation:uint32 byref -> int
function QueryBuildManagerBusyEx(
pdwBuildManagerOperation : uint
) : int
Parameters
- pdwBuildManagerOperation
Type: System.UInt32%
[out] Pointer to a flag indicating that the build manager is busy.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell80.idl:
HRESULT IVsSolutionBuildManager3::QueryBuildManagerBusyEx();
The solution build manager sets pfBuildManagerBusy to true if it is performing a task that cannot be interrupted. Otherwise, it sets pfBuildManagerBusy to false.
.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.