Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / SqlCacheDependencySection.cs / 1305376 / 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; /**/ 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
- OpenTypeCommon.cs
- ISAPIApplicationHost.cs
- RewritingSimplifier.cs
- SecurityCriticalDataForSet.cs
- ErrorHandlerModule.cs
- SqlCommand.cs
- JsonQNameDataContract.cs
- FlowDocumentPage.cs
- Run.cs
- PlatformNotSupportedException.cs
- NativeMethodsCLR.cs
- WorkflowDefinitionContext.cs
- NonBatchDirectoryCompiler.cs
- ConfigurationSchemaErrors.cs
- MethodRental.cs
- WebHeaderCollection.cs
- DateTimeUtil.cs
- TrustManagerPromptUI.cs
- PixelFormats.cs
- AnimationClockResource.cs
- VirtualizedContainerService.cs
- NonClientArea.cs
- LateBoundBitmapDecoder.cs
- ScanQueryOperator.cs
- DrawingAttributeSerializer.cs
- ClientUtils.cs
- SynchronizationLockException.cs
- XmlSchemaResource.cs
- ConstantExpression.cs
- XmlSortKey.cs
- Int64KeyFrameCollection.cs
- InvalidContentTypeException.cs
- ToolStripItem.cs
- DetailsViewInsertEventArgs.cs
- ZipIOZip64EndOfCentralDirectoryBlock.cs
- MouseEvent.cs
- HostingEnvironmentSection.cs
- Queue.cs
- RealProxy.cs
- RectValueSerializer.cs
- SequenceQuery.cs
- NavigationWindowAutomationPeer.cs
- MatrixTransform.cs
- PageAction.cs
- CreateRefExpr.cs
- NestedContainer.cs
- LambdaCompiler.Generated.cs
- SmtpTransport.cs
- DataGridTable.cs
- HelpProvider.cs
- RegexWriter.cs
- ObjectConverter.cs
- TcpAppDomainProtocolHandler.cs
- Storyboard.cs
- SecurityTokenRequirement.cs
- ToolboxDataAttribute.cs
- EmptyElement.cs
- Utils.cs
- SemanticResolver.cs
- AuthorizationRule.cs
- SecurityBindingElementImporter.cs
- ToolStripControlHost.cs
- Base64Encoding.cs
- SHA384Managed.cs
- latinshape.cs
- ApplicationCommands.cs
- Queue.cs
- Paragraph.cs
- RowType.cs
- HttpListenerRequest.cs
- ArrayHelper.cs
- Color.cs
- DataTableCollection.cs
- assemblycache.cs
- DetailsViewUpdatedEventArgs.cs
- Options.cs
- SelectionRangeConverter.cs
- AutoFocusStyle.xaml.cs
- TypeBuilderInstantiation.cs
- InvalidComObjectException.cs
- CodeSnippetExpression.cs
- IISMapPath.cs
- FrameworkContentElement.cs
- PageThemeCodeDomTreeGenerator.cs
- AuthorizationPolicyTypeElementCollection.cs
- MaterialGroup.cs
- NameObjectCollectionBase.cs
- MetadataCache.cs
- ChannelBinding.cs
- SqlCommand.cs
- DataMemberListEditor.cs
- ResourceReferenceKeyNotFoundException.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- PortCache.cs
- StorageAssociationTypeMapping.cs
- DrawingCollection.cs
- UriSection.cs
- StreamGeometry.cs
- SecurityPolicySection.cs
- XmlNode.cs