Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // // 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
- FixedNode.cs
- IncrementalCompileAnalyzer.cs
- securestring.cs
- CryptoApi.cs
- FtpCachePolicyElement.cs
- XmlElementElement.cs
- WebPartTransformerCollection.cs
- Parameter.cs
- Keywords.cs
- CodeParameterDeclarationExpression.cs
- DeviceFiltersSection.cs
- SapiRecoInterop.cs
- IPAddressCollection.cs
- HtmlString.cs
- BindingNavigator.cs
- XmlIlTypeHelper.cs
- TimeIntervalCollection.cs
- RequestResizeEvent.cs
- Token.cs
- LoginNameDesigner.cs
- securitycriticaldataClass.cs
- MSAAWinEventWrap.cs
- ContainerSelectorGlyph.cs
- MouseActionConverter.cs
- GeometryDrawing.cs
- AnalyzedTree.cs
- FileUtil.cs
- ColumnWidthChangedEvent.cs
- DataSetUtil.cs
- BitmapEffectvisualstate.cs
- Parameter.cs
- MaskInputRejectedEventArgs.cs
- Visitor.cs
- StringFunctions.cs
- ObjectRef.cs
- Model3DCollection.cs
- KnownBoxes.cs
- ItemsControlAutomationPeer.cs
- ToolBar.cs
- HebrewNumber.cs
- SqlExpressionNullability.cs
- PageSettings.cs
- RowVisual.cs
- BrowserCapabilitiesFactoryBase.cs
- HGlobalSafeHandle.cs
- AddingNewEventArgs.cs
- InvariantComparer.cs
- SafeArchiveContext.cs
- HtmlInputImage.cs
- RequestUriProcessor.cs
- BufferedReadStream.cs
- BaseParaClient.cs
- PrivilegeNotHeldException.cs
- ObjectPersistData.cs
- DataTableExtensions.cs
- ComplexType.cs
- BamlRecordHelper.cs
- WeakHashtable.cs
- BamlTreeNode.cs
- PresentationTraceSources.cs
- localization.cs
- DbConvert.cs
- ClipboardProcessor.cs
- LongValidator.cs
- EntityContainerRelationshipSet.cs
- InvalidCastException.cs
- Timeline.cs
- BevelBitmapEffect.cs
- AdornerPresentationContext.cs
- Hex.cs
- SymbolType.cs
- Animatable.cs
- ObjectIDGenerator.cs
- HtmlElementEventArgs.cs
- MouseGestureConverter.cs
- InvokeGenerator.cs
- PrintPreviewGraphics.cs
- WindowsNonControl.cs
- Form.cs
- DrawingContextWalker.cs
- DiscoveryClientDocuments.cs
- XPathNode.cs
- Stackframe.cs
- RowToParametersTransformer.cs
- ListDictionaryInternal.cs
- ApplyTemplatesAction.cs
- DisplayMemberTemplateSelector.cs
- ParameterCollection.cs
- SingleAnimation.cs
- WebPartZoneBase.cs
- CapabilitiesRule.cs
- columnmapkeybuilder.cs
- ScriptReference.cs
- EntityKeyElement.cs
- DynamicPropertyReader.cs
- DataGridDesigner.cs
- PersistenceTypeAttribute.cs
- WebBrowsableAttribute.cs
- EventWaitHandle.cs
- TextRangeAdaptor.cs