Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- WorkflowMessageEventHandler.cs
- PropertyGridEditorPart.cs
- DESCryptoServiceProvider.cs
- LocatorGroup.cs
- ChannelSinkStacks.cs
- EmbeddedObject.cs
- LabelLiteral.cs
- IisTraceListener.cs
- CharConverter.cs
- GridViewRowCollection.cs
- StreamingContext.cs
- ActionFrame.cs
- SymmetricAlgorithm.cs
- MethodExpression.cs
- SymbolTable.cs
- EntityDataSourceValidationException.cs
- ScrollViewerAutomationPeer.cs
- BitmapEffectGeneralTransform.cs
- LambdaCompiler.Unary.cs
- WebPartMinimizeVerb.cs
- SelectionRange.cs
- brushes.cs
- RegexRunner.cs
- TraceContextEventArgs.cs
- DataObjectSettingDataEventArgs.cs
- WindowsGraphics.cs
- DoubleAnimationClockResource.cs
- MachineKeyConverter.cs
- EncoderNLS.cs
- Matrix3DStack.cs
- PersonalizationStateInfoCollection.cs
- ConfigXmlElement.cs
- DataGridViewRowEventArgs.cs
- RegexWorker.cs
- WebPartZoneBase.cs
- MenuRendererClassic.cs
- CodeMethodInvokeExpression.cs
- FolderBrowserDialog.cs
- MenuItemCollectionEditorDialog.cs
- ListViewVirtualItemsSelectionRangeChangedEvent.cs
- UIAgentAsyncParams.cs
- X509Utils.cs
- ZipIOModeEnforcingStream.cs
- FlowLayoutPanel.cs
- UserControl.cs
- UnconditionalPolicy.cs
- ConnectionManagementSection.cs
- SafeArrayTypeMismatchException.cs
- DataServiceQueryOfT.cs
- UserControl.cs
- Int64Storage.cs
- SHA384Managed.cs
- PathFigure.cs
- ToolStripContentPanelRenderEventArgs.cs
- RouteValueDictionary.cs
- DataSourceHelper.cs
- ConsoleEntryPoint.cs
- XPathAncestorQuery.cs
- WhitespaceRule.cs
- DataServiceClientException.cs
- HttpsChannelFactory.cs
- InvokeMethod.cs
- TreeChangeInfo.cs
- ProbeDuplexCD1AsyncResult.cs
- DesignTimeVisibleAttribute.cs
- SafeRegistryHandle.cs
- ApplicationActivator.cs
- TableLayoutPanelCodeDomSerializer.cs
- XslAst.cs
- StringComparer.cs
- ToolboxItemAttribute.cs
- RNGCryptoServiceProvider.cs
- ProcessStartInfo.cs
- InfiniteIntConverter.cs
- DesignTimeTemplateParser.cs
- FrameworkElementAutomationPeer.cs
- ComplexPropertyEntry.cs
- GridViewRow.cs
- MeasurementDCInfo.cs
- MultipleViewProviderWrapper.cs
- XNodeNavigator.cs
- ExceptionCollection.cs
- DataServiceSaveChangesEventArgs.cs
- InstanceData.cs
- StringStorage.cs
- DescendantOverDescendantQuery.cs
- EventHandlersStore.cs
- HyperLinkColumn.cs
- XmlHierarchicalEnumerable.cs
- DataControlImageButton.cs
- DataGridViewTextBoxCell.cs
- SafePEFileHandle.cs
- IIS7UserPrincipal.cs
- TdsParserSessionPool.cs
- _CookieModule.cs
- DataGridViewColumnEventArgs.cs
- BuilderElements.cs
- CodeParameterDeclarationExpression.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- SchemaSetCompiler.cs