Transport Interface
Visual Studio 2015
Specifies the protocol the debugger uses to communicate to the machine owning the debuggee.
Assembly: EnvDTE80 (in EnvDTE80.dll)
| Name | Description | |
|---|---|---|
![]() | Collection | Gets the Transports collection to which this Transport object belongs (if any). |
![]() | DTE | Gets the top-level extensibility object. |
![]() | Engines | Gets the Engines collection. |
![]() | ID | Gets the ID of the Transport as a GUID. |
![]() | Name | Gets or sets the name of the Transport object. |
![]() | Parent | Gets the immediate parent object of a Transport object, in this case, a Debugger2 object. |
Imports EnvDTE Imports EnvDTE80 Imports System.Diagnostics Imports Microsoft.VisualBasic.ControlChars Public Module Module1 Sub ShowTransports() Dim dbg As EnvDTE80.Debugger2 dbg = DTE.Debugger Dim strTransportList As String Dim transport As EnvDTE80.Transport For Each transport In dbg.Transports strTransportList = strTransportList + transport.Name & ", _ " & transport.ID & VbCr Next MsgBox(strTransportList) End Sub End Module
Show:
