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: StringThe name of the project.
target
Type: StringThe target.
recipePath
Type: StringThe recipe path.
cancel
Type: Boolean%Whether or not this is canceled.
cancelReason
Type: String%The reason for the cancelation.
.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.