IVstaHostAdapter.GetDebugInfo Method

Returns the specified debugging information from the project properties.

Namespace:  Microsoft.VisualStudio.Tools.Applications.DesignTime.Interop
Assembly:  Microsoft.VisualStudio.Tools.Applications.DesignTime.v9.0 (in Microsoft.VisualStudio.Tools.Applications.DesignTime.v9.0.dll)

Syntax

'Declaration
Sub GetDebugInfo ( _
    <OutAttribute> ByRef exePath As String, _
    <OutAttribute> ByRef commandLine As String, _
    <OutAttribute> ByRef workingDir As String _
)
'Usage
Dim instance As IVstaHostAdapter 
Dim exePath As String 
Dim commandLine As String 
Dim workingDir As String

instance.GetDebugInfo(exePath, commandLine, _
    workingDir)
void GetDebugInfo(
    out string exePath,
    out string commandLine,
    out string workingDir
)
void GetDebugInfo(
    [OutAttribute] String^% exePath, 
    [OutAttribute] String^% commandLine, 
    [OutAttribute] String^% workingDir
)
function GetDebugInfo(
    exePath : String, 
    commandLine : String, 
    workingDir : String
)

Parameters

  • exePath
    Type: System.String%

    When this method returns, exePath contains the full path of the application to run when the debugging session starts. This parameter is passed uninitialized.

  • commandLine
    Type: System.String%

    When this method returns, commandLine contains the parameters to pass to the target application. This parameter is passed uninitialized.

  • workingDir
    Type: System.String%

    When this method returns, workingDir contains the working directory of the target application. This parameter is passed uninitialized.

Remarks

Return strings might contain replacement variables.

.NET Framework Security

See Also

Reference

IVstaHostAdapter Interface

IVstaHostAdapter Members

Microsoft.VisualStudio.Tools.Applications.DesignTime.Interop Namespace