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
- HtmlString.cs
- DbDataReader.cs
- CompiledXpathExpr.cs
- XPathPatternParser.cs
- UIAgentAsyncBeginRequest.cs
- TraceHandlerErrorFormatter.cs
- BlurEffect.cs
- RemotingConfiguration.cs
- Win32.cs
- Vertex.cs
- WindowsEditBox.cs
- ViewValidator.cs
- BindableAttribute.cs
- EncryptedPackage.cs
- WsatServiceCertificate.cs
- TypeToken.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- GregorianCalendarHelper.cs
- SmiSettersStream.cs
- TTSEngineProxy.cs
- ArcSegment.cs
- UserInitiatedRoutedEventPermission.cs
- CodeGen.cs
- ListItem.cs
- COM2EnumConverter.cs
- DataContractSerializer.cs
- XmlSecureResolver.cs
- WindowManager.cs
- CaseInsensitiveComparer.cs
- ZipArchive.cs
- PropertyTabAttribute.cs
- CommunicationException.cs
- UseManagedPresentationBindingElementImporter.cs
- SQLCharsStorage.cs
- FileDialogCustomPlace.cs
- BaseDataList.cs
- SortedList.cs
- _DisconnectOverlappedAsyncResult.cs
- XsdCachingReader.cs
- diagnosticsswitches.cs
- hebrewshape.cs
- XmlAttributeProperties.cs
- TextProperties.cs
- EndPoint.cs
- StylusLogic.cs
- DataSvcMapFileSerializer.cs
- DataControlFieldCell.cs
- ValidatingCollection.cs
- X509LogoTypeExtension.cs
- SourceItem.cs
- EventLogTraceListener.cs
- ComboBox.cs
- ReflectionPermission.cs
- followingquery.cs
- TemplateContentLoader.cs
- EventRoute.cs
- TransactionScope.cs
- DataMemberListEditor.cs
- HelpProvider.cs
- ChangePasswordDesigner.cs
- ArgumentException.cs
- Keywords.cs
- FragmentQuery.cs
- ShaderEffect.cs
- input.cs
- DocumentApplicationJournalEntry.cs
- TableRow.cs
- AutoGeneratedFieldProperties.cs
- TextEditorSelection.cs
- DesignRelationCollection.cs
- EntityTransaction.cs
- ItemCollection.cs
- OracleCommandBuilder.cs
- AmbientProperties.cs
- TransactionContextManager.cs
- Transform.cs
- RuntimeConfigLKG.cs
- ProcessModelSection.cs
- DataContractSerializerServiceBehavior.cs
- InvokeMemberBinder.cs
- AssemblyLoader.cs
- DesignerSerializationVisibilityAttribute.cs
- SafeArchiveContext.cs
- Queue.cs
- CommandLineParser.cs
- CodeTypeParameter.cs
- ContentFileHelper.cs
- SqlInternalConnection.cs
- UrlMappingCollection.cs
- TabControl.cs
- ValueQuery.cs
- FormsAuthenticationUserCollection.cs
- CompilerResults.cs
- ByteRangeDownloader.cs
- BuilderElements.cs
- MergeFilterQuery.cs
- HtmlTableCell.cs
- HttpInputStream.cs
- XmlQueryType.cs
- TypeConverter.cs