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

Return Value

Type: System.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

See Also

Reference

IVsDebuggableProjectCfg2 Interface

Microsoft.VisualStudio.Shell.Interop Namespace