IVsProjectDebugTargetProvider::SupplyDebugTarget Method (String^, String^)

 

Gets information about a debug target if the current debug target is appropriate.

Namespace:   Microsoft.VisualStudio.Shell.Interop
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::Int32

If 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
);
Return to top
Show: