VSNDK.DebugEngine.AD7PortSupplier.GetPort C# (CSharp) Method

GetPort() public method

Gets a port from a port supplier. (http://msdn.microsoft.com/en-ca/library/bb161812.aspx)
public GetPort ( System.Guid &guidPort, IDebugPort2 &ppPort ) : int
guidPort System.Guid Globally unique identifier (GUID) of the port.
ppPort IDebugPort2 Returns an IDebugPort2 object that represents the port.
return int
        public int GetPort(ref Guid guidPort, out IDebugPort2 ppPort)
        {
            ppPort = m_ports[guidPort];
            return VSConstants.S_OK;
        }