~halega/+junk/sharpdevelop

« back to all changes in this revision

Viewing changes to src/AddIns/Debugger/Debugger.Core/Options.cs

  • Committer: sk
  • Date: 2011-09-10 05:17:57 UTC
  • Revision ID: halega@halega.com-20110910051757-qfouz1llya9m6boy
4.1.0.7915 Release Candidate 1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
 
3
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
 
4
 
 
5
namespace Debugger
 
6
{
 
7
        [Serializable]
 
8
        public class Options
 
9
        {
 
10
                public Options()
 
11
                {
 
12
                        EnableJustMyCode = true;
 
13
                        StepOverNoSymbols = true;
 
14
                        StepOverDebuggerAttributes = true;
 
15
                        StepOverAllProperties = false;
 
16
                        StepOverSingleLineProperties = false;
 
17
                        StepOverFieldAccessProperties = true;
 
18
                        Verbose = false;
 
19
                        SymbolsSearchPaths = new string[0];
 
20
                        SuspendOtherThreads = true;
 
21
                        PauseOnHandledExceptions = false;
 
22
                }
 
23
                
 
24
                public bool EnableJustMyCode { get; set; }
 
25
                public bool StepOverNoSymbols { get; set; }
 
26
                public bool StepOverDebuggerAttributes { get; set; }
 
27
                public bool StepOverAllProperties { get; set; }
 
28
                public bool StepOverSingleLineProperties { get; set; }
 
29
                public bool StepOverFieldAccessProperties { get; set; }
 
30
                public bool Verbose { get; set; }
 
31
                public string[] SymbolsSearchPaths { get; set; }
 
32
                public bool SuspendOtherThreads { get; set; }
 
33
                public bool PauseOnHandledExceptions { get; set; }
 
34
        }
 
35
}