IVsProjectDebugTargetProvider::SupplyDebugTarget Method (String^, String^)
Visual Studio 2015
Gets information about a debug target if the current debug target is appropriate.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
int SupplyDebugTarget(
[OutAttribute] String^% pbstrTarget,
[OutAttribute] String^% pbstrCommandLine
)
Parameters
- pbstrTarget
-
Type:
System::String^
[out] Pointer to a string containing the name of the target.
- pbstrCommandLine
-
Type:
System::String^
[out] Pointer to a string containing arguments for the provider.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
[C++]
HRESULT IVsProjectDebugTargetProvider::SupplyDebugTarget( [out] BSTR* pbstrTarget, [out] BSTR* pbstrCommandLine );
Show: