VCDebugSettings.RemoteCommand 屬性
如果 Attach 為 false 且 Remote 指定遠端偵錯,則可執行檔會在您叫用偵錯工具時啟動。 如果 Attach 為 true 且 Remote 指定遠端偵錯,則 RemoteCommand 屬性會指定當您叫用偵錯工具時偵錯處理序應附加至的處理序。
命名空間: Microsoft.VisualStudio.VCProjectEngine
組件: Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
語法
'宣告
Property RemoteCommand As String
string RemoteCommand { get; set; }
property String^ RemoteCommand {
String^ get ();
void set (String^ value);
}
abstract RemoteCommand : string with get, set
function get RemoteCommand () : String
function set RemoteCommand (value : String)
屬性值
型別:System.String
當您叫用偵錯工具時,偵錯處理序所應附加至的處理序。
備註
請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。
範例
下列範例會修改RemoteCommand在整合式的開發環境 (IDE) 中的屬性:
' add reference to Microsoft.VisualStudio.VCProjectEngine
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim mystring As String
Dim prj As VCProject
Dim cfgs, tools As IVCCollection
Dim cfg As VCConfiguration
Dim tool As VCDebugSettings
prj = DTE.Solution.Projects.Item(1).Object
cfgs = prj.Configurations
cfg = cfgs.Item(1)
tool = cfg.DebugSettings
tool.Remote = RemoteDebuggerType.DbgRemote
tool.RemoteCommand = "test.exe"
End Sub
End Module
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。