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

CreateXSP() public static method

public static CreateXSP ( string root ) : DebuggerOptions
root string
return DebuggerOptions
        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;
        }