LLDB.Target.WatchAddress C# (CSharp) Method

WatchAddress() public method

public WatchAddress ( ulong addr, uint size, bool read, bool write, LLDB error ) : LLDB.Watchpoint
addr ulong
size uint
read bool
write bool
error LLDB
return LLDB.Watchpoint
        public LLDB.Watchpoint WatchAddress(ulong addr, uint size, bool read, bool write, LLDB.Error error)
        {
            if (ReferenceEquals(error, null))
                throw new global::System.ArgumentNullException("error", "Cannot be null because it is a C++ reference (&).");
            var arg4 = error.__Instance;
            var __ret = new LLDB.Watchpoint.Internal();
            Internal.WatchAddress_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), addr, size, read, write, arg4);
            return LLDB.Watchpoint.__CreateInstance(__ret);
        }