LLDB.Target.SetSectionLoadAddress C# (CSharp) Method

SetSectionLoadAddress() public method

Set the base load address for a module section.

public SetSectionLoadAddress ( LLDB section, ulong section_base_addr ) : LLDB.Error
section LLDB /// The section whose base load address will be set within this /// target. ///
section_base_addr ulong /// The base address for the section. ///
return LLDB.Error
        public LLDB.Error SetSectionLoadAddress(LLDB.Section section, ulong section_base_addr)
        {
            var arg0 = ReferenceEquals(section, null) ? new LLDB.Section.Internal() : *(LLDB.Section.Internal*) (section.__Instance);
            var __ret = new LLDB.Error.Internal();
            Internal.SetSectionLoadAddress_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0, section_base_addr);
            return LLDB.Error.__CreateInstance(__ret);
        }