LLDB.BreakpointLocation.SetScriptCallbackBody C# (CSharp) Method

SetScriptCallbackBody() public method

public SetScriptCallbackBody ( string script_body_text ) : LLDB.Error
script_body_text string
return LLDB.Error
        public LLDB.Error SetScriptCallbackBody(string script_body_text)
        {
            var arg0 = Marshal.StringToHGlobalAnsi(script_body_text);
            var __ret = new LLDB.Error.Internal();
            Internal.SetScriptCallbackBody_0((__Instance + __PointerAdjustment), new IntPtr(&__ret), arg0);
            Marshal.FreeHGlobal(arg0);
            return LLDB.Error.__CreateInstance(__ret);
        }