Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / HttpCachePolicyElement.cs / 1305376 / 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
- _SslState.cs
- PagesSection.cs
- AnchorEditor.cs
- HtmlElement.cs
- DiscardableAttribute.cs
- DataGridItemEventArgs.cs
- TypeUtil.cs
- ByteRangeDownloader.cs
- ToolStripPanelRenderEventArgs.cs
- ToolStripRenderer.cs
- MappingMetadataHelper.cs
- WmpBitmapDecoder.cs
- TypedAsyncResult.cs
- Thickness.cs
- TraceUtils.cs
- OrderedDictionaryStateHelper.cs
- ZipIORawDataFileBlock.cs
- UncommonField.cs
- View.cs
- BaseInfoTable.cs
- BindingObserver.cs
- ResXFileRef.cs
- XmlUtil.cs
- DataGridViewControlCollection.cs
- SecurityPolicySection.cs
- ColumnBinding.cs
- StringValidator.cs
- ZipIOModeEnforcingStream.cs
- TextRunCacheImp.cs
- SqlDataSource.cs
- BamlCollectionHolder.cs
- ResourceBinder.cs
- CatalogPartDesigner.cs
- MissingFieldException.cs
- ClosableStream.cs
- CalendarDateRange.cs
- UpdatePanelTrigger.cs
- TrustLevel.cs
- DynamicMetaObjectBinder.cs
- InstanceLockedException.cs
- FactoryRecord.cs
- ViewCellSlot.cs
- Update.cs
- FillRuleValidation.cs
- RC2.cs
- xmlglyphRunInfo.cs
- PointConverter.cs
- ResXFileRef.cs
- BrowserCapabilitiesFactoryBase.cs
- FormViewDeletedEventArgs.cs
- DataGridViewColumnTypePicker.cs
- DBDataPermission.cs
- CellConstantDomain.cs
- EncryptedHeaderXml.cs
- RC2CryptoServiceProvider.cs
- DrawingContextFlattener.cs
- DropShadowEffect.cs
- _DisconnectOverlappedAsyncResult.cs
- WorkflowInlining.cs
- Int32Collection.cs
- SspiSafeHandles.cs
- BamlRecordWriter.cs
- WebPartTracker.cs
- GB18030Encoding.cs
- ReadOnlyActivityGlyph.cs
- TabControlAutomationPeer.cs
- MarshalDirectiveException.cs
- SmtpNegotiateAuthenticationModule.cs
- X500Name.cs
- Hash.cs
- DeobfuscatingStream.cs
- WindowsPen.cs
- ArithmeticException.cs
- Int32Converter.cs
- PrinterSettings.cs
- WebPartZoneBase.cs
- PropertyOrder.cs
- OperationBehaviorAttribute.cs
- TextBoxView.cs
- CodeRegionDirective.cs
- CommonObjectSecurity.cs
- complextypematerializer.cs
- TextViewBase.cs
- DataGridHeaderBorder.cs
- ConnectionManagementElementCollection.cs
- ArgumentDesigner.xaml.cs
- MetadataProperty.cs
- InvalidFilterCriteriaException.cs
- ImageBrush.cs
- InvokeProviderWrapper.cs
- FocusChangedEventArgs.cs
- InputEventArgs.cs
- MetadataPropertyCollection.cs
- XmlValidatingReader.cs
- Point3D.cs
- NativeMethods.cs
- GlobalItem.cs
- SqlUtils.cs
- CaseStatement.cs
- Matrix.cs