[mono-config] use right type for result of strlen
[mono.git] / mcs / class / System.Web / System.Web.UI / TemplateInstanceAttribute.cs
1 //
2 // System.Web.UI.TemplateInstanceAttribute.cs
3 //
4 // Noam Lampert  (noaml@mainsoft.com)
5 //
6 //
7 // Permission is hereby granted, free of charge, to any person obtaining
8 // a copy of this software and associated documentation files (the
9 // "Software"), to deal in the Software without restriction, including
10 // without limitation the rights to use, copy, modify, merge, publish,
11 // distribute, sublicense, and/or sell copies of the Software, and to
12 // permit persons to whom the Software is furnished to do so, subject to
13 // the following conditions:
14 // 
15 // The above copyright notice and this permission notice shall be
16 // included in all copies or substantial portions of the Software.
17 // 
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 //
26 using System.ComponentModel;
27 using System.Security.Permissions;
28
29 namespace System.Web.UI
30 {
31         // attributes
32         [AttributeUsage (AttributeTargets.Property)]
33         public sealed class TemplateInstanceAttribute : Attribute
34         {
35                 #region Fields
36
37                 readonly TemplateInstance _instance;
38
39                 public static readonly TemplateInstanceAttribute Single;
40                 public static readonly TemplateInstanceAttribute Multiple;
41                 public static readonly TemplateInstanceAttribute Default;
42
43                 #endregion
44
45                 #region Constructors
46
47                 static TemplateInstanceAttribute () {
48                         Single = new TemplateInstanceAttribute (TemplateInstance.Single);
49                         Multiple = new TemplateInstanceAttribute (TemplateInstance.Multiple);
50                         Default = Multiple;
51                 }
52
53                 #endregion
54
55                 #region Properties
56
57                 public TemplateInstance Instances { get { return _instance; } }
58
59                 #endregion
60
61                 #region Methods
62
63                 public TemplateInstanceAttribute (TemplateInstance instance) {
64                         _instance = instance;
65                 }
66
67                 public override bool IsDefaultAttribute () {
68                         return Equals (Default);
69                 }
70
71                 public override bool Equals (object obj) {
72                         if (this == obj)
73                                 return true;
74
75                         TemplateInstanceAttribute other = obj as TemplateInstanceAttribute;
76                         if (obj == null)
77                                 return false;
78
79                         return Instances == other.Instances;
80                 }
81
82                 public override int GetHashCode () {
83                         return (int) Instances;
84                 }
85
86                 #endregion
87         }
88 }