IVsAppContainerBootstrapperEvents.QueryBootstrapStart Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Called before bootstrapping begins. This event gives an opportunity for components to stop the bootstrapping process.
public:
void QueryBootstrapStart(System::String ^ projectUniqueName, System::String ^ target, [Runtime::InteropServices::Out] bool % cancel, [Runtime::InteropServices::Out] System::String ^ % cancelReason);
void QueryBootstrapStart(std::wstring const & projectUniqueName, std::wstring const & target, [Runtime::InteropServices::Out] bool & cancel, [Runtime::InteropServices::Out] std::wstring const & & cancelReason);
public void QueryBootstrapStart (string projectUniqueName, string target, out bool cancel, out string cancelReason);
abstract member QueryBootstrapStart : string * string * bool * string -> unit
Public Sub QueryBootstrapStart (projectUniqueName As String, target As String, ByRef cancel As Boolean, ByRef cancelReason As String)
Parameters
- projectUniqueName
- String
The project name.
- target
- String
The target.
- cancel
- Boolean
Whether or not to cancel.
- cancelReason
- String
The reason for cancelation.