Share via


IVsAppContainerBootstrapperEvents.QueryBootstrapStart Method

Called before bootstrapping begins. This event gives an 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 QueryBootstrapStart ( _
    projectUniqueName As String, _
    target As String, _
    <OutAttribute> ByRef cancel As Boolean, _
    <OutAttribute> ByRef cancelReason As String _
)
void QueryBootstrapStart(
    string projectUniqueName,
    string target,
    out bool cancel,
    out string cancelReason
)
void QueryBootstrapStart(
    [InAttribute] String^ projectUniqueName, 
    [InAttribute] String^ target, 
    [OutAttribute] bool% cancel, 
    [OutAttribute] String^% cancelReason
)
abstract QueryBootstrapStart : 
        projectUniqueName:string * 
        target:string * 
        cancel:bool byref * 
        cancelReason:string byref -> unit
function QueryBootstrapStart(
    projectUniqueName : String, 
    target : String, 
    cancel : boolean, 
    cancelReason : String
)

Parameters

  • projectUniqueName
    Type: String

    The project name.

  • target
    Type: String

    The target.

  • cancel
    Type: Boolean%

    Whether or not to cancel.

  • cancelReason
    Type: String%

    The reason for cancelation.

.NET Framework Security

See Also

Reference

IVsAppContainerBootstrapperEvents Interface

Microsoft.VisualStudio.Shell.Interop Namespace