LLDB.Target.ClearSectionLoadAddress C# (CSharp) Method

ClearSectionLoadAddress() public method

Clear the base load address for a module section.

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