LLDB.Target.AttachToProcessWithID C# (CSharp) Method

AttachToProcessWithID() public method

public AttachToProcessWithID ( LLDB listener, int pid, LLDB error ) : LLDB.Process
listener LLDB
pid int
error LLDB
return LLDB.Process
        public LLDB.Process AttachToProcessWithID(LLDB.Listener listener, int pid, LLDB.Error error)
        {
            if (ReferenceEquals(listener, null))
                throw new global::System.ArgumentNullException("listener", "Cannot be null because it is a C++ reference (&).");
            var arg0 = listener.__Instance;
            if (ReferenceEquals(error, null))
                throw new global::System.ArgumentNullException("error", "Cannot be null because it is a C++ reference (&).");
            var arg2 = error.__Instance;
            var __ret = new LLDB.Process.Internal();
            Internal.AttachToProcessWithID_1(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0, pid, arg2);
            return LLDB.Process.__CreateInstance(__ret);
        }

Same methods

Target::AttachToProcessWithID ( LLDB listener, ulong pid, LLDB error ) : LLDB.Process