Mono.Cecil.Pdb.PdbReader.PopulateFunctions C# (CSharp) Method

PopulateFunctions() private method

private PopulateFunctions ( ) : bool
return bool
        bool PopulateFunctions()
        {
            using (pdb_file) {
                Dictionary<uint, PdbTokenLine> tokenToSourceMapping;
                string sourceServerData;
                int age;
                Guid guid;

                var funcs = PdbFile.LoadFunctions (pdb_file.value, out tokenToSourceMapping,  out sourceServerData, out age, out guid);

                if (this.guid != guid)
                    return false;

                foreach (PdbFunction function in funcs)
                    functions.Add (function.token, function);
            }

            return true;
        }