Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the specified debugging information from the project properties.
Namespace: Microsoft.VisualStudio.Tools.Applications.DesignTime
Assembly: Microsoft.VisualStudio.Tools.Applications.DesignTime.v9.0 (in Microsoft.VisualStudio.Tools.Applications.DesignTime.v9.0.dll)
Syntax
'Declaration
Public Sub GetDebugInfo ( _
<OutAttribute> ByRef exePath As String, _
<OutAttribute> ByRef commandLine As String, _
<OutAttribute> ByRef workingDir As String _
)
'Usage
Dim instance As HostAdapter
Dim exePath As String
Dim commandLine As String
Dim workingDir As String
instance.GetDebugInfo(exePath, commandLine, _
workingDir)
public void GetDebugInfo(
out string exePath,
out string commandLine,
out string workingDir
)
public:
void GetDebugInfo(
[OutAttribute] String^% exePath,
[OutAttribute] String^% commandLine,
[OutAttribute] String^% workingDir
)
public 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.
.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.
See Also
Reference
Microsoft.VisualStudio.Tools.Applications.DesignTime Namespace