Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / Configuration / HttpCachePolicyElement.cs / 1 / HttpCachePolicyElement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Net.Cache; using System.Xml; using System.Security.Permissions; public sealed class HttpCachePolicyElement : ConfigurationElement { public HttpCachePolicyElement() { this.properties.Add(this.maximumAge); this.properties.Add(this.maximumStale); this.properties.Add(this.minimumFresh); this.properties.Add(this.policyLevel); } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.MaximumAge, DefaultValue = TimeSpanValidatorAttribute.TimeSpanMaxValue)] public TimeSpan MaximumAge { get { return (TimeSpan)this[this.maximumAge]; } set { this[this.maximumAge] = value; } } [ConfigurationProperty(ConfigurationStrings.MaximumStale, DefaultValue = TimeSpanValidatorAttribute.TimeSpanMinValue)] public TimeSpan MaximumStale { get { return (TimeSpan)this[this.maximumStale]; } set { this[this.maximumStale] = value; } } [ConfigurationProperty(ConfigurationStrings.MinimumFresh, DefaultValue = TimeSpanValidatorAttribute.TimeSpanMinValue)] public TimeSpan MinimumFresh { get { return (TimeSpan)this[this.minimumFresh]; } set { this[this.minimumFresh] = value; } } [ConfigurationProperty(ConfigurationStrings.PolicyLevel, IsRequired = true, DefaultValue = (HttpRequestCacheLevel) HttpRequestCacheLevel.Default)] public HttpRequestCacheLevel PolicyLevel { get { return (HttpRequestCacheLevel)this[this.policyLevel]; } set { this[this.policyLevel] = value; } } protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey) { wasReadFromConfig = true; base.DeserializeElement(reader, serializeCollectionKey); } protected override void Reset(ConfigurationElement parentElement ) { if (parentElement != null) { HttpCachePolicyElement http = (HttpCachePolicyElement)parentElement; this.wasReadFromConfig = http.wasReadFromConfig; } base.Reset(parentElement ); } internal bool WasReadFromConfig { get { return this.wasReadFromConfig; } } bool wasReadFromConfig = false; ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty maximumAge = new ConfigurationProperty(ConfigurationStrings.MaximumAge, typeof(TimeSpan), TimeSpan.MaxValue, ConfigurationPropertyOptions.None); readonly ConfigurationProperty maximumStale = new ConfigurationProperty(ConfigurationStrings.MaximumStale, typeof(TimeSpan), TimeSpan.MinValue, ConfigurationPropertyOptions.None); readonly ConfigurationProperty minimumFresh = new ConfigurationProperty(ConfigurationStrings.MinimumFresh, typeof(TimeSpan), TimeSpan.MinValue, ConfigurationPropertyOptions.None); readonly ConfigurationProperty policyLevel = new ConfigurationProperty(ConfigurationStrings.PolicyLevel, typeof(HttpRequestCacheLevel), HttpRequestCacheLevel.Default, ConfigurationPropertyOptions.None); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System; using System.Configuration; using System.Net.Cache; using System.Xml; using System.Security.Permissions; public sealed class HttpCachePolicyElement : ConfigurationElement { public HttpCachePolicyElement() { this.properties.Add(this.maximumAge); this.properties.Add(this.maximumStale); this.properties.Add(this.minimumFresh); this.properties.Add(this.policyLevel); } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } [ConfigurationProperty(ConfigurationStrings.MaximumAge, DefaultValue = TimeSpanValidatorAttribute.TimeSpanMaxValue)] public TimeSpan MaximumAge { get { return (TimeSpan)this[this.maximumAge]; } set { this[this.maximumAge] = value; } } [ConfigurationProperty(ConfigurationStrings.MaximumStale, DefaultValue = TimeSpanValidatorAttribute.TimeSpanMinValue)] public TimeSpan MaximumStale { get { return (TimeSpan)this[this.maximumStale]; } set { this[this.maximumStale] = value; } } [ConfigurationProperty(ConfigurationStrings.MinimumFresh, DefaultValue = TimeSpanValidatorAttribute.TimeSpanMinValue)] public TimeSpan MinimumFresh { get { return (TimeSpan)this[this.minimumFresh]; } set { this[this.minimumFresh] = value; } } [ConfigurationProperty(ConfigurationStrings.PolicyLevel, IsRequired = true, DefaultValue = (HttpRequestCacheLevel) HttpRequestCacheLevel.Default)] public HttpRequestCacheLevel PolicyLevel { get { return (HttpRequestCacheLevel)this[this.policyLevel]; } set { this[this.policyLevel] = value; } } protected override void DeserializeElement(XmlReader reader, bool serializeCollectionKey) { wasReadFromConfig = true; base.DeserializeElement(reader, serializeCollectionKey); } protected override void Reset(ConfigurationElement parentElement ) { if (parentElement != null) { HttpCachePolicyElement http = (HttpCachePolicyElement)parentElement; this.wasReadFromConfig = http.wasReadFromConfig; } base.Reset(parentElement ); } internal bool WasReadFromConfig { get { return this.wasReadFromConfig; } } bool wasReadFromConfig = false; ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty maximumAge = new ConfigurationProperty(ConfigurationStrings.MaximumAge, typeof(TimeSpan), TimeSpan.MaxValue, ConfigurationPropertyOptions.None); readonly ConfigurationProperty maximumStale = new ConfigurationProperty(ConfigurationStrings.MaximumStale, typeof(TimeSpan), TimeSpan.MinValue, ConfigurationPropertyOptions.None); readonly ConfigurationProperty minimumFresh = new ConfigurationProperty(ConfigurationStrings.MinimumFresh, typeof(TimeSpan), TimeSpan.MinValue, ConfigurationPropertyOptions.None); readonly ConfigurationProperty policyLevel = new ConfigurationProperty(ConfigurationStrings.PolicyLevel, typeof(HttpRequestCacheLevel), HttpRequestCacheLevel.Default, ConfigurationPropertyOptions.None); } } // 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
- wmiprovider.cs
- InvalidateEvent.cs
- ImageSource.cs
- SoapFault.cs
- TextElementAutomationPeer.cs
- FixedPageStructure.cs
- RsaSecurityTokenAuthenticator.cs
- Memoizer.cs
- ShaperBuffers.cs
- RoutedEventHandlerInfo.cs
- SystemIcmpV4Statistics.cs
- TreeBuilderBamlTranslator.cs
- RegistryKey.cs
- WhitespaceRule.cs
- DrawingImage.cs
- AutomationPattern.cs
- AuthorizationSection.cs
- ProcessThreadDesigner.cs
- DocumentGridContextMenu.cs
- OdbcCommand.cs
- WebPartConnectionsCancelEventArgs.cs
- PageThemeBuildProvider.cs
- BaseAppDomainProtocolHandler.cs
- Quack.cs
- ObjectDataProvider.cs
- ObjectQueryProvider.cs
- BaseAsyncResult.cs
- Unit.cs
- ConfigsHelper.cs
- InheritanceRules.cs
- HWStack.cs
- DeclarativeCatalogPart.cs
- ToolboxComponentsCreatingEventArgs.cs
- SqlAliaser.cs
- ArrayEditor.cs
- XmlSchemaFacet.cs
- AnimatedTypeHelpers.cs
- SQLStringStorage.cs
- EntityDataSourceUtil.cs
- Control.cs
- InternalDispatchObject.cs
- LinearKeyFrames.cs
- DBPropSet.cs
- ProviderBase.cs
- SecurityChannelFaultConverter.cs
- Int32CAMarshaler.cs
- XamlSerializerUtil.cs
- SystemFonts.cs
- StorageComplexTypeMapping.cs
- XamlRtfConverter.cs
- DataGridPagerStyle.cs
- Operand.cs
- BinaryMethodMessage.cs
- GlobalItem.cs
- ExpandoClass.cs
- ListItemViewAttribute.cs
- FacetDescriptionElement.cs
- httpserverutility.cs
- FileLoadException.cs
- AssemblyAttributes.cs
- SqlNotificationEventArgs.cs
- AmbiguousMatchException.cs
- BezierSegment.cs
- Predicate.cs
- ServiceControllerDesigner.cs
- AsnEncodedData.cs
- XmlIgnoreAttribute.cs
- TypeToken.cs
- PolyBezierSegmentFigureLogic.cs
- InfoCardRSAOAEPKeyExchangeFormatter.cs
- IDReferencePropertyAttribute.cs
- ServiceModelDictionary.cs
- UIElementPropertyUndoUnit.cs
- MimeXmlReflector.cs
- TextRangeSerialization.cs
- SelectionPattern.cs
- ViewStateModeByIdAttribute.cs
- InstanceContextManager.cs
- LineBreak.cs
- PositiveTimeSpanValidatorAttribute.cs
- LOSFormatter.cs
- BinaryFormatter.cs
- SiteMembershipCondition.cs
- SerializationObjectManager.cs
- RightsManagementPermission.cs
- ColorConverter.cs
- DataGridViewRowsAddedEventArgs.cs
- NetworkStream.cs
- ClientConfigurationHost.cs
- DynamicActivityTypeDescriptor.cs
- StsCommunicationException.cs
- ApplicationFileParser.cs
- BufferedWebEventProvider.cs
- OracleEncoding.cs
- SQLSingle.cs
- NativeMethods.cs
- DataGridTable.cs
- PrintSchema.cs
- SynchronizationValidator.cs
- ContentElement.cs