| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- //
- // System.Web.Configuration.SessionStateSection
- //
- // Authors:
- // Chris Toshok ([email protected])
- //
- // (C) 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.
- //
- using System;
- using System.ComponentModel;
- using System.Configuration;
- using System.Web.SessionState;
- #if NET_2_0
- namespace System.Web.Configuration {
- public sealed class SessionStateSection : ConfigurationSection
- {
- static ConfigurationProperty allowCustomSqlDatabaseProp;
- static ConfigurationProperty cookielessProp;
- static ConfigurationProperty cookieNameProp;
- static ConfigurationProperty customProviderProp;
- static ConfigurationProperty modeProp;
- static ConfigurationProperty partitionResolverTypeProp;
- static ConfigurationProperty providersProp;
- static ConfigurationProperty regenerateExpiredSessionIdProp;
- static ConfigurationProperty sessionIDManagerTypeProp;
- static ConfigurationProperty sqlCommandTimeoutProp;
- static ConfigurationProperty sqlConnectionStringProp;
- static ConfigurationProperty stateConnectionStringProp;
- static ConfigurationProperty stateNetworkTimeoutProp;
- static ConfigurationProperty timeoutProp;
- static ConfigurationProperty useHostingIdentityProp;
- static ConfigurationPropertyCollection properties;
- static SessionStateSection ()
- {
- allowCustomSqlDatabaseProp = new ConfigurationProperty ("allowCustomSqlDatabase", typeof (bool), false);
- cookielessProp = new ConfigurationProperty ("cookieless", typeof (HttpCookieMode));
- cookieNameProp = new ConfigurationProperty ("cookieName", typeof (string), "ASP.NET_SessionId");
- customProviderProp = new ConfigurationProperty ("customProvider", typeof (string), "");
- modeProp = new ConfigurationProperty ("mode", typeof (SessionStateMode), SessionStateMode.InProc);
- partitionResolverTypeProp = new ConfigurationProperty ("partitionResolverType", typeof (string), "");
- providersProp = new ConfigurationProperty ("providers", typeof (ProviderSettingsCollection));
- regenerateExpiredSessionIdProp = new ConfigurationProperty ("regenerateExpiredSessionId", typeof (bool), true);
- sessionIDManagerTypeProp = new ConfigurationProperty ("sessionIDManagerType", typeof (string), "");
- sqlCommandTimeoutProp = new ConfigurationProperty ("sqlCommandTimeout", typeof (TimeSpan), TimeSpan.FromSeconds (30));
- sqlConnectionStringProp = new ConfigurationProperty ("sqlConnectionString", typeof (string), "data source=localhost;Integrated Security=SSPI");
- stateConnectionStringProp = new ConfigurationProperty ("stateConnectionString", typeof (string), "tcpip=loopback:42424");
- stateNetworkTimeoutProp = new ConfigurationProperty ("stateNetworkTimeout", typeof (TimeSpan), TimeSpan.FromSeconds (10));
- timeoutProp = new ConfigurationProperty ("timeout", typeof (TimeSpan), TimeSpan.FromMinutes (20));
- useHostingIdentityProp = new ConfigurationProperty ("useHostingIdentity", typeof (bool), true);
- properties = new ConfigurationPropertyCollection ();
- properties.Add (allowCustomSqlDatabaseProp);
- properties.Add (cookielessProp);
- properties.Add (cookieNameProp);
- properties.Add (customProviderProp);
- properties.Add (modeProp);
- properties.Add (partitionResolverTypeProp);
- properties.Add (providersProp);
- properties.Add (regenerateExpiredSessionIdProp);
- properties.Add (sessionIDManagerTypeProp);
- properties.Add (sqlCommandTimeoutProp);
- properties.Add (sqlConnectionStringProp);
- properties.Add (stateConnectionStringProp);
- properties.Add (stateNetworkTimeoutProp);
- properties.Add (timeoutProp);
- properties.Add (useHostingIdentityProp);
- }
- [MonoTODO]
- protected override void PostDeserialize ()
- {
- base.PostDeserialize ();
- }
- [ConfigurationProperty ("allowCustomSqlDatabase", DefaultValue = "False")]
- public bool AllowCustomSqlDatabase {
- get { return (bool) base [allowCustomSqlDatabaseProp];}
- set { base[allowCustomSqlDatabaseProp] = value; }
- }
- [ConfigurationProperty ("cookieless")]
- public HttpCookieMode Cookieless {
- get { return (HttpCookieMode) base [cookielessProp];}
- set { base[cookielessProp] = value; }
- }
- [ConfigurationProperty ("cookieName", DefaultValue = "ASP.NET_SessionId")]
- public string CookieName {
- get { return (string) base [cookieNameProp];}
- set { base[cookieNameProp] = value; }
- }
- [ConfigurationProperty ("customProvider", DefaultValue = "")]
- public string CustomProvider {
- get { return (string) base [customProviderProp];}
- set { base[customProviderProp] = value; }
- }
- [ConfigurationProperty ("mode", DefaultValue = "InProc")]
- public SessionStateMode Mode {
- get { return (SessionStateMode) base [modeProp];}
- set { base[modeProp] = value; }
- }
- [ConfigurationProperty ("partitionResolverType", DefaultValue = "")]
- public string PartitionResolverType {
- get { return (string) base [partitionResolverTypeProp];}
- set { base[partitionResolverTypeProp] = value; }
- }
- [ConfigurationProperty ("providers")]
- public ProviderSettingsCollection Providers {
- get { return (ProviderSettingsCollection) base [providersProp];}
- }
- [ConfigurationProperty ("regenerateExpiredSessionId", DefaultValue = "True")]
- public bool RegenerateExpiredSessionId {
- get { return (bool) base [regenerateExpiredSessionIdProp];}
- set { base[regenerateExpiredSessionIdProp] = value; }
- }
- [ConfigurationProperty ("sessionIDManagerType", DefaultValue = "")]
- public string SessionIDManagerType {
- get { return (string) base [sessionIDManagerTypeProp];}
- set { base[sessionIDManagerTypeProp] = value; }
- }
- [TypeConverter (typeof (TimeSpanSecondsOrInfiniteConverter))]
- [ConfigurationProperty ("sqlCommandTimeout", DefaultValue = "00:00:30")]
- public TimeSpan SqlCommandTimeout {
- get { return (TimeSpan) base [sqlCommandTimeoutProp];}
- set { base[sqlCommandTimeoutProp] = value; }
- }
- [ConfigurationProperty ("sqlConnectionString", DefaultValue = "data source=localhost;Integrated Security=SSPI")]
- public string SqlConnectionString {
- get { return (string) base [sqlConnectionStringProp];}
- set { base[sqlConnectionStringProp] = value; }
- }
- [ConfigurationProperty ("stateConnectionString", DefaultValue = "tcpip=loopback:42424")]
- public string StateConnectionString {
- get { return (string) base [stateConnectionStringProp];}
- set { base[stateConnectionStringProp] = value; }
- }
- [TypeConverter (typeof (TimeSpanSecondsOrInfiniteConverter))]
- [ConfigurationProperty ("stateNetworkTimeout", DefaultValue = "00:00:10")]
- public TimeSpan StateNetworkTimeout {
- get { return (TimeSpan) base [stateNetworkTimeoutProp];}
- set { base[stateNetworkTimeoutProp] = value; }
- }
- [TypeConverter (typeof (TimeSpanMinutesOrInfiniteConverter))]
- [TimeSpanValidator (MinValueString = "00:01:00", MaxValueString = "10675199.02:48:05.4775807")]
- [ConfigurationProperty ("timeout", DefaultValue = "00:20:00")]
- public TimeSpan Timeout {
- get { return (TimeSpan) base [timeoutProp];}
- set { base[timeoutProp] = value; }
- }
- [ConfigurationProperty ("useHostingIdentity", DefaultValue = "True")]
- public bool UseHostingIdentity {
- get { return (bool) base [useHostingIdentityProp];}
- set { base[useHostingIdentityProp] = value; }
- }
- #if notyet
- [MonoTODO]
- public ConfigurationElementProperty ElementProperty {
- get { throw new NotImplementedException (); }
- }
- #endif
- protected override ConfigurationPropertyCollection Properties {
- get { return properties; }
- }
- }
- }
- #endif
|