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
- TextEditorThreadLocalStore.cs
- SQLStringStorage.cs
- ProfileSection.cs
- XsltSettings.cs
- TableRowCollection.cs
- BuildManagerHost.cs
- IgnoreFlushAndCloseStream.cs
- _IPv4Address.cs
- SecurityRuntime.cs
- WebPartConnectionsConfigureVerb.cs
- CompositeActivityValidator.cs
- StrokeSerializer.cs
- BorderGapMaskConverter.cs
- CompilerGlobalScopeAttribute.cs
- Monitor.cs
- SettingsPropertyIsReadOnlyException.cs
- GridViewSortEventArgs.cs
- ProfileSection.cs
- GatewayIPAddressInformationCollection.cs
- CalendarDay.cs
- ProfileInfo.cs
- JapaneseCalendar.cs
- MD5Cng.cs
- ListenerConnectionDemuxer.cs
- ActiveXSerializer.cs
- assemblycache.cs
- BaseTreeIterator.cs
- AppDomainFactory.cs
- WebPageTraceListener.cs
- EntityObject.cs
- XmlMessageFormatter.cs
- ProfilePropertyNameValidator.cs
- ParameterCollectionEditor.cs
- BrowserCapabilitiesCompiler.cs
- HyperLinkStyle.cs
- _NestedMultipleAsyncResult.cs
- ListenerElementsCollection.cs
- WinInetCache.cs
- Span.cs
- BehaviorEditorPart.cs
- DataListGeneralPage.cs
- TagPrefixInfo.cs
- ImageListDesigner.cs
- ObservableCollection.cs
- DbUpdateCommandTree.cs
- AnnotationResourceCollection.cs
- ApplicationCommands.cs
- AccessDataSource.cs
- EncoderBestFitFallback.cs
- CircleHotSpot.cs
- ContentPlaceHolder.cs
- FactoryGenerator.cs
- ProcessManager.cs
- ObjectNavigationPropertyMapping.cs
- DesignerAutoFormatCollection.cs
- EntityDataSourceChangedEventArgs.cs
- IChannel.cs
- DataBindingCollectionConverter.cs
- Operators.cs
- DuplicateDetector.cs
- BulletChrome.cs
- StatusBarDesigner.cs
- DynamicDataRoute.cs
- ListSortDescriptionCollection.cs
- ByteConverter.cs
- TreeNodeBindingDepthConverter.cs
- RenderingBiasValidation.cs
- ToolboxDataAttribute.cs
- ConnectionOrientedTransportBindingElement.cs
- PenThread.cs
- SqlNotificationRequest.cs
- CachedBitmap.cs
- TextRangeProviderWrapper.cs
- FileSystemWatcher.cs
- DataBoundControlHelper.cs
- DataGridViewRowCancelEventArgs.cs
- ToolStripDropDown.cs
- GridView.cs
- RepeaterItemCollection.cs
- MulticastIPAddressInformationCollection.cs
- SurrogateSelector.cs
- MetadataAssemblyHelper.cs
- SelectionWordBreaker.cs
- ParallelQuery.cs
- ToolBarTray.cs
- TransformerConfigurationWizardBase.cs
- ContentValidator.cs
- BitmapEffectvisualstate.cs
- DerivedKeySecurityTokenStub.cs
- Timer.cs
- PagesChangedEventArgs.cs
- ApplicationId.cs
- BeginGetFileNameFromUserRequest.cs
- ToolStripLocationCancelEventArgs.cs
- XmlSerializerVersionAttribute.cs
- MailDefinition.cs
- ToolstripProfessionalRenderer.cs
- BitmapEffectrendercontext.cs
- XmlCollation.cs
- ExpressionCopier.cs