IVsDebuggableProjectCfg2.OnBeforeDebugLaunch Method
Provides a method the implementer can use to perform necessary actions before the actual launch of the debugger.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function OnBeforeDebugLaunch ( _
grfLaunch As UInteger _
) As Integer
int OnBeforeDebugLaunch(
uint grfLaunch
)
int OnBeforeDebugLaunch(
[InAttribute] unsigned int grfLaunch
)
abstract OnBeforeDebugLaunch :
grfLaunch:uint32 -> int
function OnBeforeDebugLaunch(
grfLaunch : uint
) : int
Parameters
grfLaunch
Type: UInt32[in] Flags determining how to start the debugger. For valid grfLaunch values, see __VSDBGLAUNCHFLAGS.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
At the beginning of debugging, the solution build manager first calls OnBeforeDebugLaunch on each project supporting this interface. It then goes through the projects again and performs the actual call to DebugLaunch.
.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.