Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- TypeSystemHelpers.cs
- RelationshipConstraintValidator.cs
- SafeCloseHandleCritical.cs
- VersionValidator.cs
- HandledMouseEvent.cs
- CommandID.cs
- ListenerAdapterBase.cs
- OutOfMemoryException.cs
- DrawingDrawingContext.cs
- ItemCollection.cs
- XpsS0ValidatingLoader.cs
- BitmapFrameDecode.cs
- AssemblySettingAttributes.cs
- FileVersionInfo.cs
- DataBoundControlAdapter.cs
- WebPartAddingEventArgs.cs
- MemberAssignment.cs
- XamlInt32CollectionSerializer.cs
- IndependentAnimationStorage.cs
- NavigationWindowAutomationPeer.cs
- _RegBlobWebProxyDataBuilder.cs
- PolicyVersion.cs
- HostingPreferredMapPath.cs
- BitmapSource.cs
- WebConfigurationManager.cs
- ToolStripProgressBar.cs
- PartialCachingAttribute.cs
- Variant.cs
- HttpTransportElement.cs
- ReadOnlyHierarchicalDataSourceView.cs
- AllMembershipCondition.cs
- ProxyHelper.cs
- NodeCounter.cs
- AffineTransform3D.cs
- ItemAutomationPeer.cs
- ArraySet.cs
- ArrangedElement.cs
- SchemaManager.cs
- DbConnectionStringBuilder.cs
- HtmlLink.cs
- ListViewEditEventArgs.cs
- ComplexBindingPropertiesAttribute.cs
- StringInfo.cs
- ImageListImage.cs
- RegexFCD.cs
- HtmlImage.cs
- ClientEndpointLoader.cs
- DataSourceIDConverter.cs
- EmptyTextWriter.cs
- ValueUnavailableException.cs
- ContextMenuService.cs
- GeometryModel3D.cs
- RegistryKey.cs
- coordinator.cs
- EntityDataSource.cs
- DebugManager.cs
- SessionPageStateSection.cs
- ProfilePropertyMetadata.cs
- DbDataRecord.cs
- SiteMapDataSource.cs
- Command.cs
- CustomAssemblyResolver.cs
- XNameTypeConverter.cs
- Renderer.cs
- xsdvalidator.cs
- DataGridViewRowCollection.cs
- Accessible.cs
- PieceDirectory.cs
- EdmTypeAttribute.cs
- StateFinalizationActivity.cs
- WsatExtendedInformation.cs
- FormsAuthenticationUserCollection.cs
- Mouse.cs
- EdgeModeValidation.cs
- WebPartPersonalization.cs
- CheckPair.cs
- InternalBufferOverflowException.cs
- ByteAnimationBase.cs
- ReaderWriterLock.cs
- DataGridRelationshipRow.cs
- SmtpNtlmAuthenticationModule.cs
- WebScriptMetadataMessage.cs
- UriSectionData.cs
- DependencyObjectPropertyDescriptor.cs
- OrderedDictionaryStateHelper.cs
- ProviderBase.cs
- XmlComplianceUtil.cs
- Expander.cs
- DigitShape.cs
- SqlCharStream.cs
- XmlMembersMapping.cs
- ListItemCollection.cs
- WindowsHyperlink.cs
- RowsCopiedEventArgs.cs
- QilFunction.cs
- SAPICategories.cs
- RoutingService.cs
- TextWriterTraceListener.cs
- Number.cs
- DesignColumn.cs