/// <summary> /// System.Configuration.Provider.ProviderBase.Initialize Method /// </summary> public override void Initialize(string name, NameValueCollection config) { // Initialize values from web.config. if (config == null) { throw new ArgumentNullException("config", Properties.Resources.ErrArgumentNull); } if (string.IsNullOrEmpty(name)) { name = Properties.Resources.RoleProviderDefaultName; } if (string.IsNullOrEmpty(config["description"])) { config.Remove("description"); config.Add("description", Properties.Resources.RoleProviderDefaultDescription); } // Initialize the abstract base class. base.Initialize(name, config); m_applicationName = PgMembershipProvider.GetConfigValue(config["applicationName"], HostingEnvironment.ApplicationVirtualPath); // Get connection string. m_connectionString = PgMembershipProvider.GetConnectionString(config["connectionStringName"]); }
/// <summary> /// System.Configuration.Provider.ProviderBase.Initialize Method /// </summary> public override void Initialize(string name, NameValueCollection config) { // Initialize values from web.config. if (config == null) { throw new ArgumentNullException("config", Properties.Resources.ErrArgumentNull); } if (string.IsNullOrEmpty(name)) { name = Properties.Resources.SessionStoreProviderDefaultName; } if (string.IsNullOrEmpty(config["description"])) { config.Remove("description"); config.Add("description", Properties.Resources.SessionStoreProviderDefaultDescription); } // Initialize the abstract base class. base.Initialize(name, config); m_applicationName = PgMembershipProvider.GetConfigValue(config["applicationName"], HostingEnvironment.ApplicationVirtualPath); // Get connection string. m_connectionString = PgMembershipProvider.GetConnectionString(config["connectionStringName"]); // Get <sessionState> configuration element. m_config = (SessionStateSection)WebConfigurationManager.GetSection("system.web/sessionState"); // Should automatic session garbage collection be turned on? bool enableExpiredSessionAutoDeletion = Convert.ToBoolean(PgMembershipProvider.GetConfigValue(config["enableExpiredSessionAutoDeletion"], "false"), CultureInfo.InvariantCulture); if (!enableExpiredSessionAutoDeletion) { return; } m_enableExpireCallback = Convert.ToBoolean(PgMembershipProvider.GetConfigValue(config["enableSessionExpireCallback"], "false"), CultureInfo.InvariantCulture); // Load session garbage collection configuration and setup garbage collection interval timer double expiredSessionAutoDeletionInterval = Convert.ToDouble(PgMembershipProvider.GetConfigValue(config["expiredSessionAutoDeletionInterval"], "1800000"), CultureInfo.InvariantCulture); //default: 30 minutes m_expiredSessionDeletionTimer = new System.Timers.Timer(expiredSessionAutoDeletionInterval); m_expiredSessionDeletionTimer.Elapsed += new System.Timers.ElapsedEventHandler(ExpiredSessionDeletionTimer_Elapsed); m_expiredSessionDeletionTimer.Enabled = true; m_expiredSessionDeletionTimer.AutoReset = true; }