Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / SqlCacheDependencySection.cs / 1 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ConfigXmlText.cs
- sqlmetadatafactory.cs
- DataTrigger.cs
- RegistryExceptionHelper.cs
- SendingRequestEventArgs.cs
- BindingContext.cs
- CodeMemberProperty.cs
- RadialGradientBrush.cs
- RefType.cs
- AttributeInfo.cs
- ExpressionVisitor.cs
- Latin1Encoding.cs
- Version.cs
- BaseCollection.cs
- TempFiles.cs
- QilStrConcat.cs
- WindowsImpersonationContext.cs
- DateTimeValueSerializerContext.cs
- Base64Stream.cs
- Literal.cs
- SchemaTypeEmitter.cs
- GcHandle.cs
- Int32RectConverter.cs
- HMACRIPEMD160.cs
- Compilation.cs
- MenuStrip.cs
- BrowserCapabilitiesCompiler.cs
- ContentType.cs
- XmlQualifiedName.cs
- mansign.cs
- StyleCollectionEditor.cs
- InfoCardCryptoHelper.cs
- TextBox.cs
- PriorityRange.cs
- HyperLinkDesigner.cs
- Int32AnimationUsingKeyFrames.cs
- DbCommandDefinition.cs
- CompilationLock.cs
- DrawingGroupDrawingContext.cs
- SplitterDesigner.cs
- WindowInteropHelper.cs
- ToolStripItemTextRenderEventArgs.cs
- Attributes.cs
- MetadataItemCollectionFactory.cs
- ReturnType.cs
- DbLambda.cs
- SystemException.cs
- SystemResourceHost.cs
- XsdDuration.cs
- FileLoadException.cs
- StyleCollection.cs
- RectangleConverter.cs
- XmlLangPropertyAttribute.cs
- Hyperlink.cs
- DirectoryLocalQuery.cs
- ServiceModelSecurityTokenRequirement.cs
- EventLogPermission.cs
- ThreadInterruptedException.cs
- XmlConvert.cs
- DynamicValueConverter.cs
- AliasedExpr.cs
- TextModifierScope.cs
- BaseResourcesBuildProvider.cs
- XmlSignatureManifest.cs
- DescendantQuery.cs
- ActivityTypeDesigner.xaml.cs
- XmlDataSource.cs
- VScrollProperties.cs
- Hyperlink.cs
- GenericNameHandler.cs
- RepeatEnumerable.cs
- AdapterUtil.cs
- ComNativeDescriptor.cs
- webproxy.cs
- CompatibleIComparer.cs
- HttpWebResponse.cs
- SrgsDocumentParser.cs
- ShaperBuffers.cs
- DataGridViewHitTestInfo.cs
- ManipulationLogic.cs
- Int32Animation.cs
- X509Extension.cs
- WmlCalendarAdapter.cs
- ScrollItemPattern.cs
- DesignerObject.cs
- MetadataLocation.cs
- CustomErrorsSectionWrapper.cs
- CodeEntryPointMethod.cs
- MimeParameters.cs
- Comparer.cs
- SpellerError.cs
- DbParameterCollectionHelper.cs
- OrthographicCamera.cs
- CompilerScope.Storage.cs
- RouteTable.cs
- SystemThemeKey.cs
- PrinterUnitConvert.cs
- BaseCAMarshaler.cs
- CodeAttachEventStatement.cs
- CalendarData.cs