Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / OutputCacheSettingsSection.cs / 1305376 / OutputCacheSettingsSection.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.Web.UI; using System.ComponentModel; using System.Security.Permissions; /**/ public sealed class OutputCacheSettingsSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propOutputCacheProfiles; #if NOT_UNTIL_LATER private static readonly ConfigurationProperty _propFragmentCacheProfiles; #endif static OutputCacheSettingsSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _propOutputCacheProfiles = new ConfigurationProperty("outputCacheProfiles", typeof(OutputCacheProfileCollection), null, ConfigurationPropertyOptions.None); _properties.Add(_propOutputCacheProfiles); #if NOT_UNTIL_LATER _propFragmentCacheProfiles = new ConfigurationProperty("fragmentCacheProfiles", typeof(FragmentCacheProfileCollection), new FragmentCacheProfileCollection(), ConfigurationPropertyOptions.None); _properties.Add(_propFragmentCacheProfiles); #endif } public OutputCacheSettingsSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("outputCacheProfiles")] public OutputCacheProfileCollection OutputCacheProfiles { get { return (OutputCacheProfileCollection)base[_propOutputCacheProfiles]; } } #if NOT_UNTIL_LATER [ConfigurationProperty("FragmentCacheProfiles")] public FragmentCacheProfileCollection FragmentCacheProfiles { get { return (FragmentCacheProfileCollection) base[_propFragmentCacheProfiles]; } } #endif } } // 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
- ToolStripContainerDesigner.cs
- XmlAttributeOverrides.cs
- Timer.cs
- AdornerPresentationContext.cs
- StyleCollection.cs
- RouteValueExpressionBuilder.cs
- TimelineGroup.cs
- QilLoop.cs
- DataGridViewToolTip.cs
- RowUpdatedEventArgs.cs
- DataControlHelper.cs
- MsmqInputSessionChannel.cs
- ContourSegment.cs
- BuildProvider.cs
- IsolatedStoragePermission.cs
- PriorityRange.cs
- SingleObjectCollection.cs
- DataGridViewAdvancedBorderStyle.cs
- NameValueCollection.cs
- AbsoluteQuery.cs
- BamlTreeMap.cs
- Control.cs
- SoapIgnoreAttribute.cs
- DoubleKeyFrameCollection.cs
- TransformPattern.cs
- SocketElement.cs
- BrowserCapabilitiesCompiler.cs
- CreateUserWizardStep.cs
- RemotingSurrogateSelector.cs
- SchemaInfo.cs
- CodeIndexerExpression.cs
- DocumentPaginator.cs
- JulianCalendar.cs
- StreamGeometryContext.cs
- Funcletizer.cs
- SourceSwitch.cs
- CryptoProvider.cs
- _NegotiateClient.cs
- FontStyles.cs
- DynamicQueryableWrapper.cs
- ScriptHandlerFactory.cs
- ClientScriptManager.cs
- PropertyOverridesTypeEditor.cs
- HtmlPanelAdapter.cs
- DataBoundControl.cs
- Trace.cs
- ModuleConfigurationInfo.cs
- UserControl.cs
- SpecialFolderEnumConverter.cs
- DataSourceXmlAttributeAttribute.cs
- HtmlTableRowCollection.cs
- ManifestSignatureInformation.cs
- WindowsPen.cs
- QilCloneVisitor.cs
- PreProcessInputEventArgs.cs
- SessionEndingEventArgs.cs
- JsonGlobals.cs
- CommandLibraryHelper.cs
- HtmlShimManager.cs
- ExceptionUtil.cs
- PathFigureCollectionConverter.cs
- OrthographicCamera.cs
- ReadWriteObjectLock.cs
- PrintController.cs
- ListManagerBindingsCollection.cs
- _ListenerAsyncResult.cs
- OleDbRowUpdatedEvent.cs
- WmlLinkAdapter.cs
- ExpandCollapseProviderWrapper.cs
- Odbc32.cs
- precedingsibling.cs
- BamlWriter.cs
- DependencyPropertyHelper.cs
- StaticExtensionConverter.cs
- DockPanel.cs
- XamlRtfConverter.cs
- RootProfilePropertySettingsCollection.cs
- securestring.cs
- _ProxyChain.cs
- XamlSerializationHelper.cs
- DynamicQueryableWrapper.cs
- NestPullup.cs
- TcpTransportElement.cs
- CacheChildrenQuery.cs
- SwitchLevelAttribute.cs
- RtfNavigator.cs
- GCHandleCookieTable.cs
- CommandTreeTypeHelper.cs
- SvcMapFileLoader.cs
- Switch.cs
- AssertSection.cs
- QilPatternFactory.cs
- TimeManager.cs
- OrderedDictionary.cs
- BuildResultCache.cs
- Range.cs
- DispatcherProcessingDisabled.cs
- SynchronizedPool.cs
- XmlSecureResolver.cs
- ErrorInfoXmlDocument.cs