Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System/System.Diagnostics/TraceSwitch.cs')
-rwxr-xr-xmcs/class/System/System.Diagnostics/TraceSwitch.cs74
1 files changed, 0 insertions, 74 deletions
diff --git a/mcs/class/System/System.Diagnostics/TraceSwitch.cs b/mcs/class/System/System.Diagnostics/TraceSwitch.cs
deleted file mode 100755
index e2404fe77cf..00000000000
--- a/mcs/class/System/System.Diagnostics/TraceSwitch.cs
+++ /dev/null
@@ -1,74 +0,0 @@
-//
-// System.Diagnostics.TraceSwtich.cs
-//
-// Comments from John R. Hicks <angryjohn69@nc.rr.com> original implementation
-// can be found at: /mcs/docs/apidocs/xml/en/System.Diagnostics
-//
-// Author:
-// John R. Hicks (angryjohn69@nc.rr.com)
-//
-// (C) 2001
-//
-
-namespace System.Diagnostics
-{
- public class TraceSwitch : Switch
- {
- private TraceLevel level;
- private bool traceError = false;
- private bool traceInfo = false;
- private bool traceVerbose = false;
- private bool traceWarning = false;
-
- public TraceSwitch(string displayName, string description)
- : base(displayName, description)
- {
- }
-
- public TraceLevel Level
- {
- get
- {
- return level;
- }
- set
- {
- level = value;
- }
-
- }
-
- public bool TraceError
- {
- get
- {
- return traceError;
- }
- }
-
- public bool TraceInfo
- {
- get
- {
- return traceInfo;
- }
- }
-
- public bool TraceVerbose
- {
- get
- {
- return traceVerbose;
- }
- }
-
- public bool TraceWarning
- {
- get
- {
- return traceWarning;
- }
- }
- }
-}
-