Mono.Debugger.DebuggerOptions.SetupXSP C# (CSharp) Method

SetupXSP() private method

private SetupXSP ( ) : void
return void
        void SetupXSP()
        {
            file = BuildInfo.xsp;
            if (start_target == null)
                start_target = false;
            if (stop_in_main == null)
                stop_in_main = false;
        }

Usage Example

        public static DebuggerOptions CreateXSP(string root)
        {
            DebuggerOptions options = new DebuggerOptions();

            options.InferiorArgs = new string [0];
            options.StartXSP     = true;
            options.XSP_Root     = root;
            options.SetupXSP();
            return(options);
        }
All Usage Examples Of Mono.Debugger.DebuggerOptions::SetupXSP