Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.ExtLibs/HeuristicLab.Netron/3.0.2672.12446/Netron.Diagramming.Core-3.0.2672.12446/Utils/Tracing.cs @ 2768

Last change on this file since 2768 was 2768, checked in by mkommend, 14 years ago

added solution folders and sources for the netron library (ticket #867)

File size: 1.5 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Diagnostics;
5namespace Netron.Diagramming.Core
6{
7    public static class Tracing
8    {
9        #region Fields
10        /// <summary>
11        /// the serialization switch
12        /// </summary>
13        private static BooleanSwitch mBinarySerializationSwitch = new BooleanSwitch("BinarySerializationSwitch", "This switch enables/disables the ouput of binary serialization information.");
14        /// <summary>
15        /// the deserialization switch
16        /// </summary>
17        private static BooleanSwitch mBinaryDeserializationSwitch = new BooleanSwitch("BinaryDeserializationSwitch", "This switch enables/disables the ouput of binary deserialization information.");
18        #endregion
19
20        #region Properties
21        /// <summary>
22        /// Gets the deserialization switch.
23        /// </summary>
24        /// <value>The deserialization switch.</value>
25        public static BooleanSwitch BinaryDeserializationSwitch
26        {
27            get
28            {
29                return mBinaryDeserializationSwitch;
30            }
31        }
32        /// <summary>
33        /// Gets the serialization switch.
34        /// </summary>
35        /// <value>The serialization switch.</value>
36        public static BooleanSwitch BinarySerializationSwitch
37        {
38            get
39            {
40                return mBinarySerializationSwitch;
41            }
42        }
43        #endregion
44
45
46    }
47}
Note: See TracBrowser for help on using the repository browser.