Share via


IVsAppContainerBootstrapperEvents.QueryBootstrapForDebuggingStart Method

Called before bootstrapping for debugging begins. This event gives opportunity for components to stop the bootstrapping process.

Namespace:  Microsoft.VisualStudio.Shell.Interop
Assembly:  Microsoft.VisualStudio.Shell.Interop.12.0 (in Microsoft.VisualStudio.Shell.Interop.12.0.dll)

Syntax

'Declaration
Sub QueryBootstrapForDebuggingStart ( _
    projectUniqueName As String, _
    target As String, _
    recipePath As String, _
    <OutAttribute> ByRef cancel As Boolean, _
    <OutAttribute> ByRef cancelReason As String _
)
void QueryBootstrapForDebuggingStart(
    string projectUniqueName,
    string target,
    string recipePath,
    out bool cancel,
    out string cancelReason
)
void QueryBootstrapForDebuggingStart(
    [InAttribute] String^ projectUniqueName, 
    [InAttribute] String^ target, 
    [InAttribute] String^ recipePath, 
    [OutAttribute] bool% cancel, 
    [OutAttribute] String^% cancelReason
)
abstract QueryBootstrapForDebuggingStart : 
        projectUniqueName:string * 
        target:string * 
        recipePath:string * 
        cancel:bool byref * 
        cancelReason:string byref -> unit
function QueryBootstrapForDebuggingStart(
    projectUniqueName : String, 
    target : String, 
    recipePath : String, 
    cancel : boolean, 
    cancelReason : String
)

Parameters

  • projectUniqueName
    Type: String

    The name of the project.

  • target
    Type: String

    The target.

  • recipePath
    Type: String

    The recipe path.

  • cancel
    Type: Boolean%

    Whether or not this is canceled.

  • cancelReason
    Type: String%

    The reason for the cancelation.

.NET Framework Security

See Also

Reference

IVsAppContainerBootstrapperEvents Interface

Microsoft.VisualStudio.Shell.Interop Namespace