In System.Web.Configuration.Internal:
[mono.git] / mcs / class / System.Web / System.Web.Configuration_2.0 / MembershipSection.cs
1 //
2 // System.Web.Configuration.MembershipSection.cs
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //      Chris Toshok (toshok@ximian.com)
7 //
8 // (C) 2004,2005 Novell, Inc (http://www.novell.com)
9 //
10
11 //
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.
30 //
31
32 using System;
33 using System.ComponentModel;
34 using System.Configuration;
35
36 #if NET_2_0
37
38 namespace System.Web.Configuration {
39
40         public sealed class MembershipSection : ConfigurationSection
41         {
42                 static ConfigurationProperty defaultProviderProp;
43                 static ConfigurationProperty hashAlgorithmTypeProp;
44                 static ConfigurationProperty providersProp;
45                 static ConfigurationProperty userIsOnlineTimeWindowProp;
46                 static ConfigurationPropertyCollection properties;
47
48                 static MembershipSection ()
49                 {
50                         defaultProviderProp = new ConfigurationProperty ("defaultProvider", typeof (string), "AspNetSqlMembershipProvider",
51                                                                          TypeDescriptor.GetConverter (typeof (string)),
52                                                                          PropertyHelper.NonEmptyStringValidator,
53                                                                          ConfigurationPropertyOptions.None);
54                         hashAlgorithmTypeProp = new ConfigurationProperty ("hashAlgorithmType", typeof (string), "");
55                         providersProp = new ConfigurationProperty ("providers", typeof (ProviderSettingsCollection), null,
56                                                                    null, PropertyHelper.DefaultValidator,
57                                                                    ConfigurationPropertyOptions.None);
58                         userIsOnlineTimeWindowProp = new ConfigurationProperty ("userIsOnlineTimeWindow", typeof (TimeSpan), TimeSpan.FromMinutes (15),
59                                                                                 PropertyHelper.TimeSpanMinutesConverter,
60                                                                                 new TimeSpanValidator (new TimeSpan (0,1,0), TimeSpan.MaxValue),
61                                                                                 ConfigurationPropertyOptions.None);
62                         properties = new ConfigurationPropertyCollection ();
63
64                         properties.Add (defaultProviderProp);
65                         properties.Add (hashAlgorithmTypeProp);
66                         properties.Add (providersProp);
67                         properties.Add (userIsOnlineTimeWindowProp);
68                 }
69
70                 [StringValidator (MinLength = 1)]
71                 [ConfigurationProperty ("defaultProvider", DefaultValue = "AspNetSqlMembershipProvider")]
72                 public string DefaultProvider {
73                         get { return (string) base [defaultProviderProp];}
74                         set { base[defaultProviderProp] = value; }
75                 }
76
77                 [ConfigurationProperty ("hashAlgorithmType", DefaultValue = "")]
78                 public string HashAlgorithmType {
79                         get { return (string) base [hashAlgorithmTypeProp];}
80                         set { base[hashAlgorithmTypeProp] = value; }
81                 }
82
83                 [ConfigurationProperty ("providers")]
84                 public ProviderSettingsCollection Providers {
85                         get { return (ProviderSettingsCollection) base [providersProp];}
86                 }
87
88                 [TypeConverter (typeof (TimeSpanMinutesConverter))]
89                 [TimeSpanValidator (MinValueString = "00:01:00")]
90                 [ConfigurationProperty ("userIsOnlineTimeWindow", DefaultValue = "00:15:00")]
91                 public TimeSpan UserIsOnlineTimeWindow {
92                         get { return (TimeSpan) base [userIsOnlineTimeWindowProp];}
93                         set { base[userIsOnlineTimeWindowProp] = value; }
94                 }
95
96                 protected override ConfigurationPropertyCollection Properties {
97                         get { return properties; }
98                 }
99         }
100 }
101
102 #endif