LLDB.Target.BreakpointCreateByLocation C# (CSharp) Method

BreakpointCreateByLocation() public method

public BreakpointCreateByLocation ( LLDB file_spec, uint line ) : LLDB.Breakpoint
file_spec LLDB
line uint
return LLDB.Breakpoint
        public LLDB.Breakpoint BreakpointCreateByLocation(LLDB.FileSpec file_spec, uint line)
        {
            if (ReferenceEquals(file_spec, null))
                throw new global::System.ArgumentNullException("file_spec", "Cannot be null because it is a C++ reference (&).");
            var arg0 = file_spec.__Instance;
            var __ret = new LLDB.Breakpoint.Internal();
            Internal.BreakpointCreateByLocation_1(new IntPtr(&__ret), (__Instance + __PointerAdjustment), arg0, line);
            return LLDB.Breakpoint.__CreateInstance(__ret);
        }

Same methods

Target::BreakpointCreateByLocation ( LLDB file_spec, uint line, ulong offset ) : LLDB.Breakpoint
Target::BreakpointCreateByLocation ( string file, uint line ) : LLDB.Breakpoint