Backport of some changes from svn trunk - performance improvement and a fix for bug...
[mono-project.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / BuildProvider.cs
blobe2af29699a22dbbc828a1badcd06340a3ac22d9b
1 //
2 // System.Web.Configuration.BuildProvider
3 //
4 // Authors:
5 // Gonzalo Paniagua Javier (gonzalo@ximian.com)
6 // Chris Toshok (toshok@ximian.com)
7 //
8 // Copyright (c) 2005 Novell, Inc (http://www.novell.com)
9 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 #if NET_2_0
33 using System;
34 using System.ComponentModel;
35 using System.Configuration;
37 namespace System.Web.Configuration
39 public sealed class BuildProvider : ConfigurationElement {
41 static ConfigurationProperty extensionProp;
42 static ConfigurationProperty typeProp;
43 static ConfigurationPropertyCollection properties;
45 static BuildProvider ()
47 extensionProp = new ConfigurationProperty ("extension", typeof (string), "",
48 TypeDescriptor.GetConverter (typeof (string)), PropertyHelper.NonEmptyStringValidator,
49 ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey);
50 typeProp = new ConfigurationProperty ("type", typeof (string), "",
51 TypeDescriptor.GetConverter (typeof (string)), PropertyHelper.NonEmptyStringValidator,
52 ConfigurationPropertyOptions.IsRequired);
53 properties = new ConfigurationPropertyCollection();
55 properties.Add (extensionProp);
56 properties.Add (typeProp);
59 internal BuildProvider ()
63 public BuildProvider (string extension, string type)
65 this.Extension = extension;
66 this.Type = type;
69 [StringValidator (MinLength = 1)]
70 [ConfigurationProperty ("extension", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey)]
71 public string Extension {
72 get { return (string) base[extensionProp]; }
73 set { base[extensionProp] = value; }
76 [StringValidator (MinLength = 1)]
77 [ConfigurationProperty ("type", DefaultValue = "", Options = ConfigurationPropertyOptions.IsRequired)]
78 public string Type {
79 get { return (string) base[typeProp]; }
80 set { base[typeProp] = value; }
83 protected override ConfigurationPropertyCollection Properties {
84 get { return properties; }
87 public override bool Equals (object provider)
89 BuildProvider p = provider as BuildProvider;
90 if (p == null)
91 return false;
93 return (Extension == p.Extension && Type == p.Type);
96 public override int GetHashCode ()
98 return (Extension.GetHashCode () + Type.GetHashCode ());
103 #endif // NET_2_0