2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git] / class / System / System.Diagnostics / SwitchAttribute.cs
blob0c843755bda5610f1a496d98985d04ecb79f8f72
1 //
2 // SwitchAttribute.cs
3 //
4 // Author:
5 // Atsushi Enomoto <atsushi@ximian.com>
6 //
7 // (C) 2007 Novell, Inc.
8 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
30 #if NET_2_0
32 using System;
33 using System.Diagnostics;
34 using System.Reflection;
36 namespace System.Diagnostics
38 [MonoLimitation ("This attribute is not considered in trace support.")]
39 [AttributeUsageAttribute (
40 AttributeTargets.Assembly |
41 AttributeTargets.Class |
42 AttributeTargets.Constructor |
43 AttributeTargets.Method |
44 AttributeTargets.Property |
45 AttributeTargets.Event)]
46 public sealed class SwitchAttribute : Attribute
48 public static SwitchAttribute [] GetAll (Assembly assembly)
50 object [] atts = assembly.GetCustomAttributes (typeof (SwitchAttribute), false);
51 SwitchAttribute [] ret = new SwitchAttribute [atts.Length];
52 for (int i = 0; i < atts.Length; i++)
53 ret [i] = (SwitchAttribute) atts [i];
54 return ret;
57 public SwitchAttribute (string switchName, Type switchType)
59 if (switchName == null)
60 throw new ArgumentNullException ("switchName");
61 if (switchType == null)
62 throw new ArgumentNullException ("switchType");
63 name = switchName;
64 type = switchType;
67 string name, desc = String.Empty;
68 Type type;
70 public string SwitchName {
71 get { return name; }
72 set {
73 if (name == null)
74 throw new ArgumentNullException ("value");
75 name = value;
79 public string SwitchDescription {
80 get { return desc; }
81 set {
82 if (desc == null)
83 throw new ArgumentNullException ("value");
84 desc = value;
88 public Type SwitchType {
89 get { return type; }
90 set {
91 if (type == null)
92 throw new ArgumentNullException ("value");
93 type = value;
98 #endif