LLDB.Target.BreakpointCreateByAddress C# (CSharp) Method

BreakpointCreateByAddress() public method

public BreakpointCreateByAddress ( ulong address ) : LLDB.Breakpoint
address ulong
return LLDB.Breakpoint
        public LLDB.Breakpoint BreakpointCreateByAddress(ulong address)
        {
            var __ret = new LLDB.Breakpoint.Internal();
            Internal.BreakpointCreateByAddress_0(new IntPtr(&__ret), (__Instance + __PointerAdjustment), address);
            return LLDB.Breakpoint.__CreateInstance(__ret);
        }