LLDB.Target.AddModule C# (CSharp) Method

AddModule() public method

public AddModule ( LLDB module_spec ) : LLDB.Module
module_spec LLDB
return LLDB.Module
        public LLDB.Module AddModule(LLDB.ModuleSpec module_spec)
        {
            if (ReferenceEquals(module_spec, null))
                throw new global::System.ArgumentNullException("module_spec", "Cannot be null because it is a C++ reference (&).");
            var arg0 = module_spec.__Instance;
            var __ret = new LLDB.Module.Internal();
            Internal.AddModule_3(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0);
            return LLDB.Module.__CreateInstance(__ret);
        }

Same methods

Target::AddModule ( string path, string triple, string uuid ) : LLDB.Module
Target::AddModule ( string path, string triple, string uuid_cstr, string symfile ) : LLDB.Module
Target::AddModule ( LLDB module ) : bool