Ref parameter was not covered by ParameterInfo.IsOut. Fixed bug #696784.
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Configuration / DiagnosticSection.cs
1 //
2 // DiagnosticSection.cs
3 //
4 // Author:
5 //      Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // Copyright (C) 2006 Novell, Inc.  http://www.novell.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Collections;
31 using System.Collections.Generic;
32 using System.Collections.ObjectModel;
33 using System.ComponentModel;
34 using System.Configuration;
35 using System.Net;
36 using System.Net.Security;
37 using System.Reflection;
38 using System.Security.Cryptography.X509Certificates;
39 using System.Security.Principal;
40 using System.IdentityModel.Claims;
41 using System.IdentityModel.Policy;
42 using System.IdentityModel.Tokens;
43 using System.ServiceModel;
44 using System.ServiceModel.Channels;
45 using System.ServiceModel.Description;
46 using System.ServiceModel.Diagnostics;
47 using System.ServiceModel.Dispatcher;
48 using System.ServiceModel.MsmqIntegration;
49 using System.ServiceModel.PeerResolvers;
50 using System.ServiceModel.Security;
51 using System.Runtime.Serialization;
52 using System.Text;
53 using System.Xml;
54
55 namespace System.ServiceModel.Configuration
56 {
57         public sealed partial class DiagnosticSection
58                  : ConfigurationSection
59         {
60                 // Static Fields
61                 static ConfigurationPropertyCollection properties;
62 #if NET_4_0
63                 static ConfigurationProperty end_to_end_tracing;
64                 static ConfigurationProperty etw_provider_id;
65 #endif
66                 static ConfigurationProperty message_logging;
67                 static ConfigurationProperty performance_counters;
68                 static ConfigurationProperty performance_counter_enabled;
69                 static ConfigurationProperty wmi_provider_enabled;
70
71                 static DiagnosticSection ()
72                 {
73                         properties = new ConfigurationPropertyCollection ();
74 #if NET_4_0
75                         end_to_end_tracing = new ConfigurationProperty ("endToEndTracing", typeof (EndToEndTracingElement), null, null, null, ConfigurationPropertyOptions.None);
76
77                         etw_provider_id = new ConfigurationProperty ("etwProviderId", typeof (string), null, null, null, ConfigurationPropertyOptions.None);
78 #endif
79                         message_logging = new ConfigurationProperty ("messageLogging", typeof (MessageLoggingElement), null, null, null, ConfigurationPropertyOptions.None);
80
81                         performance_counters = new ConfigurationProperty ("performanceCounters", typeof (PerformanceCounterScope), "Off", null, null, ConfigurationPropertyOptions.None);
82
83                         performance_counter_enabled = new ConfigurationProperty ("performanceCounterEnabled", typeof (bool), false, null, null, ConfigurationPropertyOptions.None);
84
85                         wmi_provider_enabled = new ConfigurationProperty ("wmiProviderEnabled",
86                                 typeof (bool), "false", new BooleanConverter (), null, ConfigurationPropertyOptions.None);
87
88 #if NET_4_0
89                         properties.Add (end_to_end_tracing);
90                         properties.Add (etw_provider_id);
91 #endif
92                         properties.Add (message_logging);
93                         properties.Add (performance_counters);
94                         properties.Add (performance_counter_enabled);
95                         properties.Add (wmi_provider_enabled);
96                 }
97
98                 public DiagnosticSection ()
99                 {
100                 }
101
102
103                 // Properties
104
105 #if NET_4_0
106                 [ConfigurationProperty ("endToEndTracing", Options = ConfigurationPropertyOptions.None)]
107                 public EndToEndTracingElement EndToEndTracing {
108                         get { return (EndToEndTracingElement) base [end_to_end_tracing]; }
109                 }
110
111                 [ConfigurationProperty ("etwProviderId", DefaultValue = "{c651f5f6-1c0d-492e-8ae1-b4efd7c9d503}")]
112                 [StringValidator (MinLength = 0)]
113                 public string EtwProviderId {
114                         get { return (string) base [etw_provider_id]; }
115                         set { base [etw_provider_id] = value; }
116                 }
117 #endif
118
119                 [ConfigurationProperty ("messageLogging",
120                          Options = ConfigurationPropertyOptions.None)]
121                 public MessageLoggingElement MessageLogging {
122                         get { return (MessageLoggingElement) base [message_logging]; }
123                 }
124
125                 [ConfigurationProperty ("performanceCounters",
126                          Options = ConfigurationPropertyOptions.None,
127                          DefaultValue = "Off")]
128                 public PerformanceCounterScope PerformanceCounters {
129                         get { return (PerformanceCounterScope) base [performance_counters]; }
130                         set { base [performance_counters] = value; }
131                 }
132
133                 [ConfigurationProperty ("performanceCounterEnabled",
134                          Options = ConfigurationPropertyOptions.None,
135                          DefaultValue = false)]
136                 public bool PerformanceCounterEnabled {
137                         get { return (bool) base [performance_counter_enabled]; }
138                         set { base [performance_counter_enabled] = value; }
139                 }
140
141                 protected override ConfigurationPropertyCollection Properties {
142                         get { return properties; }
143                 }
144
145                 [ConfigurationProperty ("wmiProviderEnabled",
146                          Options = ConfigurationPropertyOptions.None,
147                         DefaultValue = false)]
148                 public bool WmiProviderEnabled {
149                         get { return (bool) base [wmi_provider_enabled]; }
150                         set { base [wmi_provider_enabled] = value; }
151                 }
152
153
154         }
155
156 }