targetNetwork -> targetFramework
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / SiteMapSection.cs
1 //
2 // System.Web.Configuration.SiteMapSection.cs
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // (C) 2004 Novell, Inc (http://www.novell.com)
8 //
9
10 //
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.
29 //
30
31 #if NET_2_0
32
33 using System;
34 using System.Configuration;
35 using System.Web.Security;
36
37 namespace System.Web.Configuration
38 {
39         public sealed class SiteMapSection: ConfigurationSection
40         {
41                 static ConfigurationProperty defaultProviderProp;
42                 static ConfigurationProperty enabledProp;
43                 static ConfigurationProperty providersProp;
44                 static ConfigurationPropertyCollection properties;
45                 
46                 static SiteMapSection ()
47                 {
48                         defaultProviderProp = new ConfigurationProperty ("defaultProvider", typeof (string), "AspNetXmlSiteMapProvider");
49                         enabledProp = new ConfigurationProperty ("enabled", typeof (bool), true);
50                         providersProp = new ConfigurationProperty ("providers", typeof (ProviderSettingsCollection));
51                         properties = new ConfigurationPropertyCollection ();
52
53                         properties.Add (defaultProviderProp);
54                         properties.Add (enabledProp);
55                         properties.Add (providersProp);
56                 }
57
58                 [StringValidator (MinLength = 1)]
59                 [ConfigurationProperty ("defaultProvider", DefaultValue = "AspNetXmlSiteMapProvider")]
60                 public string DefaultProvider {
61                         get { return (string) base ["defaultProvider"]; }
62                         set { base ["defaultProvider"] = value; }
63                 }
64                 
65                 [ConfigurationProperty ("enabled", DefaultValue = "True")]
66                 public bool Enabled {
67                         get { return (bool) base ["enabled"]; }
68                         set { base ["enabled"] = value; }
69                 }
70
71                 [ConfigurationProperty ("providers")]
72                 public ProviderSettingsCollection Providers {
73                         get { return (ProviderSettingsCollection) base ["providers"]; }
74                 }
75
76                 SiteMapProviderCollection providers;
77                 internal SiteMapProviderCollection ProvidersInternal {
78                         get {
79                                 if (providers == null) {
80                                         SiteMapProviderCollection providersTmp = new SiteMapProviderCollection ();
81                                         ProvidersHelper.InstantiateProviders (Providers, providersTmp, typeof (SiteMapProvider));
82                                         providers = providersTmp;
83                                 }
84                                 return providers;
85                         }
86                 }
87
88                 protected override ConfigurationPropertyCollection Properties {
89                         get { return properties; }
90                 }
91         }
92 }
93
94 #endif