Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / SqlCacheDependencySection.cs / 2 / 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]; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BaseUriHelper.cs
- SmtpTransport.cs
- SchemaElementDecl.cs
- XmlSchemaInclude.cs
- StrokeNodeEnumerator.cs
- WebPartsPersonalization.cs
- LoadRetryStrategyFactory.cs
- ServiceModelConfigurationSection.cs
- PropertyBuilder.cs
- ToolBarButton.cs
- wgx_render.cs
- BitSet.cs
- HierarchicalDataSourceControl.cs
- RadioButton.cs
- EpmCustomContentWriterNodeData.cs
- DbCommandTree.cs
- PolicyLevel.cs
- UITypeEditors.cs
- SoapTypeAttribute.cs
- AssertFilter.cs
- VariantWrapper.cs
- xmlformatgeneratorstatics.cs
- WebPartConnectionsDisconnectVerb.cs
- GPPOINT.cs
- FileDialogCustomPlacesCollection.cs
- RightsManagementEncryptedStream.cs
- Rect.cs
- XmlDataLoader.cs
- KeyGestureConverter.cs
- XmlValidatingReader.cs
- TemplateLookupAction.cs
- DataBoundControlAdapter.cs
- DataGridViewMethods.cs
- DPAPIProtectedConfigurationProvider.cs
- CallbackValidatorAttribute.cs
- QueueException.cs
- DataList.cs
- _CacheStreams.cs
- TimeIntervalCollection.cs
- TableCellAutomationPeer.cs
- Mutex.cs
- InfoCardClaimCollection.cs
- InternalBufferManager.cs
- DataSetUtil.cs
- ImagingCache.cs
- TextContainerHelper.cs
- SqlCrossApplyToCrossJoin.cs
- ListSourceHelper.cs
- NumberEdit.cs
- RenderContext.cs
- MdiWindowListStrip.cs
- QueueProcessor.cs
- ListControl.cs
- EditorPartChrome.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- SingleConverter.cs
- PbrsForward.cs
- SqlDesignerDataSourceView.cs
- InstallerTypeAttribute.cs
- CodeGotoStatement.cs
- DrawingAttributeSerializer.cs
- CheckedListBox.cs
- WpfKnownType.cs
- ReaderWriterLockSlim.cs
- WebPartZoneBase.cs
- MergeFilterQuery.cs
- NamedObject.cs
- Point3DCollection.cs
- ToolTipService.cs
- ActivityPreviewDesigner.cs
- CultureTable.cs
- EntityContainer.cs
- SchemaManager.cs
- HostExecutionContextManager.cs
- RectangleGeometry.cs
- CfgParser.cs
- Canonicalizers.cs
- AsnEncodedData.cs
- SystemColors.cs
- AttachedAnnotation.cs
- VisualCollection.cs
- SoapAttributes.cs
- SoundPlayerAction.cs
- PageParserFilter.cs
- StandardCommandToolStripMenuItem.cs
- StaticExtensionConverter.cs
- shaperfactory.cs
- CustomErrorCollection.cs
- WebPartCollection.cs
- ChildTable.cs
- QueryRewriter.cs
- CheckBox.cs
- ThousandthOfEmRealPoints.cs
- CollectionViewGroup.cs
- WebHttpEndpointElement.cs
- StorageAssociationSetMapping.cs
- compensatingcollection.cs
- SourceLineInfo.cs
- NonParentingControl.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs