Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / SqlCacheDependencySection.cs / 3 / SqlCacheDependencySection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Diagnostics; using System.Security.Permissions; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SqlCacheDependencySection : ConfigurationSection { private static readonly ConfigurationElementProperty s_elemProperty = new ConfigurationElementProperty(new CallbackValidator(typeof(SqlCacheDependencySection), Validate)); private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propEnabled; private static readonly ConfigurationProperty _propPollTime; private static readonly ConfigurationProperty _propDatabases; static SqlCacheDependencySection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _propEnabled = new ConfigurationProperty("enabled", typeof(bool), true, ConfigurationPropertyOptions.None); _propPollTime = new ConfigurationProperty("pollTime", typeof(int), 60000, ConfigurationPropertyOptions.None); _propDatabases = new ConfigurationProperty("databases", typeof(SqlCacheDependencyDatabaseCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); _properties.Add(_propEnabled); _properties.Add(_propPollTime); _properties.Add(_propDatabases); } public SqlCacheDependencySection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } protected override ConfigurationElementProperty ElementProperty { get { return s_elemProperty; } } private static void Validate(object value) { if (value == null) { throw new ArgumentNullException("sqlCacheDependency"); } Debug.Assert(value is SqlCacheDependencySection); SqlCacheDependencySection elem = (SqlCacheDependencySection)value; int defaultPollTime = elem.PollTime; if (defaultPollTime != 0 && defaultPollTime < 500) { throw new ConfigurationErrorsException( SR.GetString(SR.Invalid_sql_cache_dep_polltime), elem.ElementInformation.Properties["pollTime"].Source, elem.ElementInformation.Properties["pollTime"].LineNumber); } } protected override void PostDeserialize() { int defaultPollTime = PollTime; foreach (SqlCacheDependencyDatabase dbase in Databases) { dbase.CheckDefaultPollTime(defaultPollTime); } } [ConfigurationProperty("enabled", DefaultValue = true)] public bool Enabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } [ConfigurationProperty("pollTime", DefaultValue = 60000)] public int PollTime { get { return (int)base[_propPollTime]; } set { base[_propPollTime] = value; } } [ConfigurationProperty("databases")] public SqlCacheDependencyDatabaseCollection Databases { get { return (SqlCacheDependencyDatabaseCollection)base[_propDatabases]; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Diagnostics; using System.Security.Permissions; /**/ [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SqlCacheDependencySection : ConfigurationSection { private static readonly ConfigurationElementProperty s_elemProperty = new ConfigurationElementProperty(new CallbackValidator(typeof(SqlCacheDependencySection), Validate)); private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propEnabled; private static readonly ConfigurationProperty _propPollTime; private static readonly ConfigurationProperty _propDatabases; static SqlCacheDependencySection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _propEnabled = new ConfigurationProperty("enabled", typeof(bool), true, ConfigurationPropertyOptions.None); _propPollTime = new ConfigurationProperty("pollTime", typeof(int), 60000, ConfigurationPropertyOptions.None); _propDatabases = new ConfigurationProperty("databases", typeof(SqlCacheDependencyDatabaseCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); _properties.Add(_propEnabled); _properties.Add(_propPollTime); _properties.Add(_propDatabases); } public SqlCacheDependencySection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } protected override ConfigurationElementProperty ElementProperty { get { return s_elemProperty; } } private static void Validate(object value) { if (value == null) { throw new ArgumentNullException("sqlCacheDependency"); } Debug.Assert(value is SqlCacheDependencySection); SqlCacheDependencySection elem = (SqlCacheDependencySection)value; int defaultPollTime = elem.PollTime; if (defaultPollTime != 0 && defaultPollTime < 500) { throw new ConfigurationErrorsException( SR.GetString(SR.Invalid_sql_cache_dep_polltime), elem.ElementInformation.Properties["pollTime"].Source, elem.ElementInformation.Properties["pollTime"].LineNumber); } } protected override void PostDeserialize() { int defaultPollTime = PollTime; foreach (SqlCacheDependencyDatabase dbase in Databases) { dbase.CheckDefaultPollTime(defaultPollTime); } } [ConfigurationProperty("enabled", DefaultValue = true)] public bool Enabled { get { return (bool)base[_propEnabled]; } set { base[_propEnabled] = value; } } [ConfigurationProperty("pollTime", DefaultValue = 60000)] public int PollTime { get { return (int)base[_propPollTime]; } set { base[_propPollTime] = value; } } [ConfigurationProperty("databases")] public SqlCacheDependencyDatabaseCollection Databases { get { return (SqlCacheDependencyDatabaseCollection)base[_propDatabases]; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ToolStrip.cs
- HttpHandlerActionCollection.cs
- DefaultPropertyAttribute.cs
- QuotaThrottle.cs
- DbExpressionBuilder.cs
- VScrollBar.cs
- OpenTypeLayoutCache.cs
- DBParameter.cs
- TransformerTypeCollection.cs
- QilBinary.cs
- ExpandableObjectConverter.cs
- XmlILConstructAnalyzer.cs
- TransactionFlowAttribute.cs
- FrameworkContentElementAutomationPeer.cs
- SerializationHelper.cs
- ModuleConfigurationInfo.cs
- Switch.cs
- PointLight.cs
- TimeSpanStorage.cs
- EffectiveValueEntry.cs
- NativeMethods.cs
- DeploymentExceptionMapper.cs
- SqlInternalConnectionSmi.cs
- FrameworkReadOnlyPropertyMetadata.cs
- FileUpload.cs
- GPPOINT.cs
- PriorityBindingExpression.cs
- InfoCardTrace.cs
- AuthStoreRoleProvider.cs
- MemberRelationshipService.cs
- CompareValidator.cs
- CompModHelpers.cs
- MemberListBinding.cs
- PeerName.cs
- DbProviderFactories.cs
- SchemeSettingElement.cs
- WindowsListBox.cs
- NotificationContext.cs
- PasswordBoxAutomationPeer.cs
- AssemblyEvidenceFactory.cs
- BorderSidesEditor.cs
- VectorKeyFrameCollection.cs
- GridViewColumnCollection.cs
- RenderData.cs
- XpsFixedPageReaderWriter.cs
- JsonMessageEncoderFactory.cs
- PropertyTabAttribute.cs
- PublisherMembershipCondition.cs
- FormClosedEvent.cs
- EdmProviderManifest.cs
- securitycriticaldata.cs
- StreamGeometry.cs
- MissingFieldException.cs
- log.cs
- BatchStream.cs
- SafeLibraryHandle.cs
- InvalidCommandTreeException.cs
- ValueType.cs
- ThaiBuddhistCalendar.cs
- RegistrationServices.cs
- HebrewNumber.cs
- XmlSchemaImporter.cs
- ControlFilterExpression.cs
- DataGridViewRowEventArgs.cs
- RegexWorker.cs
- WebGetAttribute.cs
- OpenTypeLayout.cs
- SafeNativeMethodsMilCoreApi.cs
- TdsParameterSetter.cs
- BooleanExpr.cs
- ClientScriptItem.cs
- MD5.cs
- SiteIdentityPermission.cs
- PolicyReader.cs
- TypeContext.cs
- StartUpEventArgs.cs
- AccessDataSource.cs
- XmlQueryType.cs
- StorageTypeMapping.cs
- SoapSchemaImporter.cs
- EngineSite.cs
- EditingMode.cs
- SetIterators.cs
- OleCmdHelper.cs
- SecUtil.cs
- NumberFormatInfo.cs
- AnnotationComponentManager.cs
- xml.cs
- Assert.cs
- RealProxy.cs
- ExpressionEditor.cs
- FacetEnabledSchemaElement.cs
- SpecialFolderEnumConverter.cs
- EventLogEntry.cs
- GridSplitter.cs
- HebrewCalendar.cs
- Thread.cs
- Version.cs
- DataGridViewCellParsingEventArgs.cs
- SmtpNegotiateAuthenticationModule.cs