Mono.Debugger.Backend.Bfd.Section.get_section_contents C# (CSharp) Method

get_section_contents() private method

private get_section_contents ( object user_data ) : object
user_data object
return object
            object get_section_contents(object user_data)
            {
                byte[] data = bfd.GetSectionContents (section);
                if (data == null)
                    throw new SymbolTableException ("Can't get bfd section {0}", name);
                return new TargetReader (data, bfd.info);
            }