VSNDK.DebugEngine.AD7Port.GetPortSupplier C# (CSharp) Method

GetPortSupplier() public method

Returns the port supplier for this port. (http://msdn.microsoft.com/en-us/library/bb146688.aspx)
public GetPortSupplier ( IDebugPortSupplier2 &ppSupplier ) : int
ppSupplier IDebugPortSupplier2 Returns an IDebugPortSupplier2 object represents the port supplier for a port.
return int
        public int GetPortSupplier(out IDebugPortSupplier2 ppSupplier)
        {
            ppSupplier = m_supplier;
            return VSConstants.S_OK;
        }