Debugger2::Transports Property

 

Gets a collection of supported debugging transports.

Namespace:   EnvDTE80
Assembly:  EnvDTE80 (in EnvDTE80.dll)

property Transports^ Transports {
	Transports^ get();
}

Property Value

Type: EnvDTE80::Transports^

A Transports collection.

Transport(1) is always the "Default" transport. This transport is the one used for local debugging, but it can also be used for remote debugging if the remote computer has been properly configured.

Sub ShowTransports()
    Dim dbg As EnvDTE80.Debugger2
    dbg = DTE2.Debugger
    Dim strTransportList As String
    Dim transport As EnvDTE80.Transport

    For Each transport In dbg.Transports
        strTransportList = strTransportList + transport.Name + ", " + _
        transport.ID + NewLine
    Next
    MsgBox(strTransportList)
End Sub
Return to top
Show: