PowerStudio.DebugEngine.DebugModuleBase.GetSymbolInfo C# (CSharp) Method

GetSymbolInfo() public method

Retrieves a list of paths that are searched for symbols as well as the results of searching each path.
If the bstrVerboseSearchInfo field of the MODULE_SYMBOL_SEARCH_INFO structure is not empty, then it contains a list of paths searched and the results of that search. The list is formatted with a path, followed by ellipses ("..."), followed by the result. If there is more than one path result pair, then each pair is separated by a "\r\n" (carriage-return/linefeed) pair. The pattern looks like this: {path}...{result}\r\n{path}...{result}\r\n{path}...{result} Note that the last entry does not have a \r\n sequence.
public GetSymbolInfo ( enum_SYMBOL_SEARCH_INFO_FIELDS dwFields, MODULE_SYMBOL_SEARCH_INFO pinfo ) : int
dwFields enum_SYMBOL_SEARCH_INFO_FIELDS A combination of flags from the SYMBOL_SEARCH_INFO_FIELDS enumeration specifying which fields of pInfo are to be filled in.
pinfo MODULE_SYMBOL_SEARCH_INFO A MODULE_SYMBOL_SEARCH_INFO structure whose members are to be filled in with the specified information. If this is a null value, this method returns E_INVALIDARG.
return int
        public virtual int GetSymbolInfo( enum_SYMBOL_SEARCH_INFO_FIELDS dwFields, MODULE_SYMBOL_SEARCH_INFO[] pinfo )
        {
            Logger.Debug( string.Empty );
            return VSConstants.E_NOTIMPL;
        }