LLDB.Target.ClearModuleLoadAddress C# (CSharp) Method

ClearModuleLoadAddress() public method

Clear the section base load addresses for all sections in a module.

public ClearModuleLoadAddress ( LLDB module ) : LLDB.Error
module LLDB /// The module to unload. ///
return LLDB.Error
        public LLDB.Error ClearModuleLoadAddress(LLDB.Module module)
        {
            var arg0 = ReferenceEquals(module, null) ? new LLDB.Module.Internal() : *(LLDB.Module.Internal*) (module.__Instance);
            var __ret = new LLDB.Error.Internal();
            Internal.ClearModuleLoadAddress_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0);
            return LLDB.Error.__CreateInstance(__ret);
        }