Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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); } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextLine.cs
- SystemNetHelpers.cs
- OracleTransaction.cs
- BaseCodeDomTreeGenerator.cs
- XNodeValidator.cs
- PeerNameRecord.cs
- errorpatternmatcher.cs
- XPathAncestorIterator.cs
- CorrelationKey.cs
- CodeDomDesignerLoader.cs
- SuppressMergeCheckAttribute.cs
- DetailsView.cs
- CompiledQuery.cs
- OpenFileDialog.cs
- DependencyProperty.cs
- TimelineCollection.cs
- OleDbPropertySetGuid.cs
- SafeFileMappingHandle.cs
- SymbolType.cs
- ContextMenuAutomationPeer.cs
- LinqMaximalSubtreeNominator.cs
- X509CertificateValidator.cs
- PrintPreviewControl.cs
- EmptyReadOnlyDictionaryInternal.cs
- ManagementEventWatcher.cs
- Button.cs
- xmlsaver.cs
- ControlFilterExpression.cs
- DeploymentSectionCache.cs
- SpecularMaterial.cs
- WaitHandle.cs
- WebHeaderCollection.cs
- MetadataPropertyCollection.cs
- TemplatePropertyEntry.cs
- StorageSetMapping.cs
- XmlNodeComparer.cs
- DecoderNLS.cs
- ProxyHelper.cs
- SqlTriggerContext.cs
- ChannelManager.cs
- CompilationUtil.cs
- EnumValAlphaComparer.cs
- SafeEventLogWriteHandle.cs
- MetadataArtifactLoader.cs
- TypeForwardedToAttribute.cs
- Opcode.cs
- GreenMethods.cs
- CapabilitiesPattern.cs
- ResXBuildProvider.cs
- FactoryGenerator.cs
- Subtree.cs
- DefaultValueConverter.cs
- FactoryGenerator.cs
- TableParagraph.cs
- ReadWriteObjectLock.cs
- Stylesheet.cs
- JsonQNameDataContract.cs
- DynamicVirtualDiscoSearcher.cs
- DataBoundLiteralControl.cs
- TimeZoneInfo.cs
- MailWriter.cs
- StyleXamlTreeBuilder.cs
- DataGridViewAdvancedBorderStyle.cs
- XmlFormatExtensionPointAttribute.cs
- AlternateViewCollection.cs
- DbModificationCommandTree.cs
- DynamicPropertyReader.cs
- EntityDataSourceValidationException.cs
- ReturnEventArgs.cs
- Thickness.cs
- Drawing.cs
- PrintingPermissionAttribute.cs
- XslCompiledTransform.cs
- AssemblyBuilderData.cs
- Geometry.cs
- StylusOverProperty.cs
- DataControlButton.cs
- TypeResolver.cs
- HtmlTableCellCollection.cs
- TableColumnCollection.cs
- ComboBoxAutomationPeer.cs
- LinqDataSourceUpdateEventArgs.cs
- FontStyleConverter.cs
- DirectoryObjectSecurity.cs
- ComponentSerializationService.cs
- DataSourceControlBuilder.cs
- InputGestureCollection.cs
- TextCharacters.cs
- AutoGeneratedFieldProperties.cs
- AppDomainAttributes.cs
- XmlSchemaSimpleTypeUnion.cs
- TypeListConverter.cs
- ListViewGroup.cs
- SQLConvert.cs
- MenuTracker.cs
- ComponentResourceManager.cs
- DataGridViewCellConverter.cs
- DocumentReference.cs
- PriorityQueue.cs
- PropertyGridDesigner.cs