| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- //
- // System.Web.Configuration.FormsAuthenticationConfiguration
- //
- // Authors:
- // Lluis Sanchez Gual ([email protected])
- // Chris Toshok ([email protected])
- //
- // (C) 2004-2005 Novell, Inc (http://www.novell.com)
- //
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- #if NET_2_0
- using System.Configuration;
- using System.ComponentModel;
- namespace System.Web.Configuration
- {
- public sealed class FormsAuthenticationConfiguration: ConfigurationElement
- {
- static ConfigurationPropertyCollection properties;
- static ConfigurationProperty cookielessProp;
- static ConfigurationProperty credentialsProp;
- static ConfigurationProperty defaultUrlProp;
- static ConfigurationProperty domainProp;
- static ConfigurationProperty enableCrossAppRedirectsProp;
- static ConfigurationProperty loginUrlProp;
- static ConfigurationProperty nameProp;
- static ConfigurationProperty pathProp;
- static ConfigurationProperty protectionProp;
- static ConfigurationProperty requireSSLProp;
- static ConfigurationProperty slidingExpirationProp;
- static ConfigurationProperty timeoutProp;
- static FormsAuthenticationConfiguration ()
- {
- cookielessProp = new ConfigurationProperty ("cookieless", typeof (HttpCookieMode), HttpCookieMode.UseDeviceProfile);
- credentialsProp = new ConfigurationProperty ("credentials", typeof (FormsAuthenticationCredentials), null);
- defaultUrlProp = new ConfigurationProperty ("defaultUrl", typeof (string), "default.aspx");
- domainProp = new ConfigurationProperty ("domain", typeof (string), "");
- enableCrossAppRedirectsProp = new ConfigurationProperty ("enableCrossAppRedirects", typeof (bool), false);
- loginUrlProp = new ConfigurationProperty ("loginUrl", typeof (string), "login.aspx");
- nameProp = new ConfigurationProperty ("name", typeof (string), ".ASPXAUTH");
- pathProp = new ConfigurationProperty ("path", typeof (string), "/");
- protectionProp = new ConfigurationProperty ("protection", typeof (FormsProtectionEnum), FormsProtectionEnum.All);
- requireSSLProp = new ConfigurationProperty ("requireSSL", typeof (bool), false);
- slidingExpirationProp = new ConfigurationProperty ("slidingExpiration", typeof (bool), true);
- timeoutProp = new ConfigurationProperty ("timeout", typeof (TimeSpan), TimeSpan.FromMinutes (30));
- properties = new ConfigurationPropertyCollection ();
- properties.Add (cookielessProp);
- properties.Add (credentialsProp);
- properties.Add (defaultUrlProp);
- properties.Add (domainProp);
- properties.Add (enableCrossAppRedirectsProp);
- properties.Add (loginUrlProp);
- properties.Add (nameProp);
- properties.Add (pathProp);
- properties.Add (protectionProp);
- properties.Add (requireSSLProp);
- properties.Add (slidingExpirationProp);
- properties.Add (timeoutProp);
- }
- public FormsAuthenticationConfiguration ()
- {
- }
- [ConfigurationProperty ("cookieless", DefaultValue = "UseDeviceProfile")]
- public HttpCookieMode Cookieless {
- get { return (HttpCookieMode)base[cookielessProp]; }
- set { base[cookielessProp] = value; }
- }
- [ConfigurationProperty ("credentials")]
- public FormsAuthenticationCredentials Credentials {
- get { return (FormsAuthenticationCredentials) base[credentialsProp]; }
- }
- [StringValidator (MinLength = 1)]
- [ConfigurationProperty ("defaultUrl", DefaultValue = "default.aspx")]
- public string DefaultUrl {
- get { return (string) base[defaultUrlProp]; }
- set { base[defaultUrlProp] = value; }
- }
- [ConfigurationProperty ("domain", DefaultValue = "")]
- public string Domain {
- get { return (string) base[domainProp]; }
- set { base[domainProp] = value; }
- }
- [ConfigurationProperty ("enableCrossAppRedirects", DefaultValue = "False")]
- public bool EnableCrossAppRedirects {
- get { return (bool) base[enableCrossAppRedirectsProp]; }
- set { base[enableCrossAppRedirectsProp] = value; }
- }
- [StringValidator (MinLength = 1)]
- [ConfigurationProperty ("loginUrl", DefaultValue = "login.aspx")]
- public string LoginUrl {
- get { return (string) base[loginUrlProp]; }
- set { base[loginUrlProp] = value; }
- }
- [StringValidator (MinLength = 1)]
- [ConfigurationProperty ("name", DefaultValue = ".ASPXAUTH")]
- public string Name {
- get { return (string) base[nameProp]; }
- set { base[nameProp] = value; }
- }
- [StringValidator (MinLength = 1)]
- [ConfigurationProperty ("path", DefaultValue = "/")]
- public string Path {
- get { return (string) base[pathProp]; }
- set { base[pathProp] = value; }
- }
- [ConfigurationProperty ("protection", DefaultValue = "All")]
- public FormsProtectionEnum Protection {
- get { return (FormsProtectionEnum) base[protectionProp]; }
- set { base[protectionProp] = value; }
- }
- [ConfigurationProperty ("requireSSL", DefaultValue = "False")]
- public bool RequireSSL {
- get { return (bool) base[requireSSLProp]; }
- set { base[requireSSLProp] = value; }
- }
- [ConfigurationProperty ("slidingExpiration", DefaultValue = "True")]
- public bool SlidingExpiration {
- get { return (bool) base[slidingExpirationProp]; }
- set { base[slidingExpirationProp] = value; }
- }
- [TypeConverter (typeof (TimeSpanMinutesConverter))]
- [TimeSpanValidator (MinValueString = "00:00:00")]
- [ConfigurationProperty ("timeout", DefaultValue = "00:30:00")]
- public TimeSpan Timeout {
- get { return (TimeSpan) base[timeoutProp]; }
- set { base [timeoutProp] = value; }
- }
- protected override ConfigurationPropertyCollection Properties {
- get { return properties; }
- }
- #if notyet
- [MonoTODO]
- protected override ConfigurationElementProperty ElementProperty {
- get { throw new NotImplementedException (); }
- }
- #endif
- }
- }
- #endif
|