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

GetDescription() public method

Retrieves the description for the port supplier. (http://msdn.microsoft.com/en-us/library/bb457978.aspx)
public GetDescription ( enum_PORT_SUPPLIER_DESCRIPTION_FLAGS pdwFlags, string &pbstrText ) : int
pdwFlags enum_PORT_SUPPLIER_DESCRIPTION_FLAGS Metadata flags for the description.
pbstrText string Description of the port supplier.
return int
        public int GetDescription(enum_PORT_SUPPLIER_DESCRIPTION_FLAGS[] pdwFlags, out string pbstrText)
        {
            pbstrText = m_description;
            return VSConstants.S_OK;
        }