VCProjectConfigurationProperties.Remote Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Spécifie un débogage local ou distant.
public:
property Microsoft::VisualStudio::VCProject::RemoteDebuggerType Remote { Microsoft::VisualStudio::VCProject::RemoteDebuggerType get(); void set(Microsoft::VisualStudio::VCProject::RemoteDebuggerType value); };
public:
property Microsoft::VisualStudio::VCProject::RemoteDebuggerType Remote { Microsoft::VisualStudio::VCProject::RemoteDebuggerType get(); void set(Microsoft::VisualStudio::VCProject::RemoteDebuggerType value); };
[System.Runtime.InteropServices.DispId(2325)]
public Microsoft.VisualStudio.VCProject.RemoteDebuggerType Remote { [System.Runtime.InteropServices.DispId(2325)] get; [System.Runtime.InteropServices.DispId(2325)] set; }
[<System.Runtime.InteropServices.DispId(2325)>]
[<get: System.Runtime.InteropServices.DispId(2325)>]
[<set: System.Runtime.InteropServices.DispId(2325)>]
member this.Remote : Microsoft.VisualStudio.VCProject.RemoteDebuggerType with get, set
Public Property Remote As RemoteDebuggerType
Valeur de propriété
Énumération RemoteDebuggerType.
- Attributs
Exemples
[Visual Basic]
L’exemple de code suivant modifie la Remote propriété dans l’environnement de développement :
' 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
End Sub
End Module
Remarques
Utilisez l' RemoteDebuggerType énumération pour modifier la valeur de cette propriété.
Pour plus d’informations sur la compilation et l’exécution de cet exemple, consultez Comment : compiler l’exemple de code pour l’extensibilité du modèle de projet .