Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / HostingEnvironmentSection.cs / 1305376 / HostingEnvironmentSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Xml; using System.Configuration; using System.Collections.Specialized; using System.Collections; using System.Globalization; using System.IO; using System.Text; using System.Web.Util; using System.ComponentModel; using System.Security.Permissions; public sealed class HostingEnvironmentSection : ConfigurationSection { internal const int DefaultShutdownTimeout = 30; internal static readonly TimeSpan DefaultIdleTimeout = TimeSpan.MaxValue; // default is Infinite internal static readonly TimeSpan DefaultUrlMetadataSlidingExpiration = TimeSpan.FromMinutes(1); //default is 00:01:00 internal const String sectionName = "system.web/hostingEnvironment"; private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propIdleTimeout = new ConfigurationProperty("idleTimeout", typeof(TimeSpan), DefaultIdleTimeout, StdValidatorsAndConverters.TimeSpanMinutesOrInfiniteConverter, StdValidatorsAndConverters.PositiveTimeSpanValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propShutdownTimeout = new ConfigurationProperty("shutdownTimeout", typeof(TimeSpan), TimeSpan.FromSeconds((double)DefaultShutdownTimeout), StdValidatorsAndConverters.TimeSpanSecondsConverter, StdValidatorsAndConverters.PositiveTimeSpanValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propShadowCopyBinAssemblies = new ConfigurationProperty("shadowCopyBinAssemblies", typeof(bool), true, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propUrlMetadataSlidingExpiration = new ConfigurationProperty("urlMetadataSlidingExpiration", typeof(TimeSpan), DefaultUrlMetadataSlidingExpiration, StdValidatorsAndConverters.InfiniteTimeSpanConverter, new TimeSpanValidator(TimeSpan.Zero, TimeSpan.MaxValue), ConfigurationPropertyOptions.None); /**/ static HostingEnvironmentSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propIdleTimeout); _properties.Add(_propShutdownTimeout); _properties.Add(_propShadowCopyBinAssemblies); _properties.Add(_propUrlMetadataSlidingExpiration); } public HostingEnvironmentSection() { } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("shutdownTimeout", DefaultValue = "00:00:30")] [TypeConverter(typeof(TimeSpanSecondsConverter))] [TimeSpanValidator(MinValueString="00:00:00", MaxValueString=TimeSpanValidatorAttribute.TimeSpanMaxValue)] public TimeSpan ShutdownTimeout { get { return (TimeSpan)base[_propShutdownTimeout]; } set { base[_propShutdownTimeout] = value; } } [ConfigurationProperty("idleTimeout", DefaultValue = TimeSpanValidatorAttribute.TimeSpanMaxValue)] [TypeConverter(typeof(TimeSpanMinutesOrInfiniteConverter))] [TimeSpanValidator(MinValueString="00:00:00", MaxValueString=TimeSpanValidatorAttribute.TimeSpanMaxValue)] public TimeSpan IdleTimeout { get { return (TimeSpan)base[_propIdleTimeout]; } set { base[_propIdleTimeout] = value; } } [ConfigurationProperty("shadowCopyBinAssemblies", DefaultValue = true)] public bool ShadowCopyBinAssemblies { get { return (bool)base[_propShadowCopyBinAssemblies]; } set { base[_propShadowCopyBinAssemblies] = value; } } [ConfigurationProperty("urlMetadataSlidingExpiration", DefaultValue = "00:01:00")] [TypeConverter(typeof(InfiniteTimeSpanConverter))] [TimeSpanValidator(MinValueString="00:00:00", MaxValueString=TimeSpanValidatorAttribute.TimeSpanMaxValue)] public TimeSpan UrlMetadataSlidingExpiration { get { return (TimeSpan)base[_propUrlMetadataSlidingExpiration]; } set { base[_propUrlMetadataSlidingExpiration] = value; } } } } // 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
- HtmlTitle.cs
- WebPartEditVerb.cs
- DesignerActionItemCollection.cs
- ItemCollectionEditor.cs
- CriticalFinalizerObject.cs
- ReferencedCollectionType.cs
- AnnouncementService.cs
- WbmpConverter.cs
- ParallelRangeManager.cs
- InvalidAsynchronousStateException.cs
- XamlPointCollectionSerializer.cs
- ThaiBuddhistCalendar.cs
- Executor.cs
- ContextQuery.cs
- WmlListAdapter.cs
- WindowsPrincipal.cs
- HtmlToClrEventProxy.cs
- _LoggingObject.cs
- __TransparentProxy.cs
- HuffmanTree.cs
- ReferenceTypeElement.cs
- FloaterBaseParaClient.cs
- CalendarModeChangedEventArgs.cs
- AdCreatedEventArgs.cs
- NamespaceCollection.cs
- ClientConfigPaths.cs
- DockingAttribute.cs
- TextElementAutomationPeer.cs
- ISAPIRuntime.cs
- MultiTrigger.cs
- ImageListStreamer.cs
- HtmlEmptyTagControlBuilder.cs
- SpellerError.cs
- WebServiceHandler.cs
- InstancePersistenceCommand.cs
- HttpErrorTraceRecord.cs
- _StreamFramer.cs
- RepeaterItemEventArgs.cs
- StringFormat.cs
- Panel.cs
- Animatable.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- SerializationSectionGroup.cs
- IteratorFilter.cs
- WebPartsSection.cs
- ColumnWidthChangingEvent.cs
- TargetPerspective.cs
- _RequestCacheProtocol.cs
- WebPartEditorApplyVerb.cs
- GridViewColumnCollection.cs
- DataGridRow.cs
- PauseStoryboard.cs
- LiteralTextParser.cs
- PieceDirectory.cs
- MemberJoinTreeNode.cs
- MultiPageTextView.cs
- DoubleKeyFrameCollection.cs
- CryptoApi.cs
- TextParagraphProperties.cs
- StoryFragments.cs
- ListArgumentProvider.cs
- JulianCalendar.cs
- documentsequencetextpointer.cs
- SymLanguageType.cs
- FileDialog.cs
- ShaderRenderModeValidation.cs
- ApplicationInfo.cs
- ExpandableObjectConverter.cs
- ApplicationDirectoryMembershipCondition.cs
- StringStorage.cs
- CustomWebEventKey.cs
- TreeViewImageKeyConverter.cs
- ComponentCommands.cs
- BridgeDataRecord.cs
- Optimizer.cs
- PeerUnsafeNativeCryptMethods.cs
- StrongBox.cs
- TrackingLocation.cs
- MultiSelector.cs
- AssemblyCache.cs
- XmlAttributes.cs
- ExpressionConverter.cs
- WorkflowInstanceTerminatedRecord.cs
- BulletDecorator.cs
- SafeArchiveContext.cs
- COMException.cs
- WebPartEditorApplyVerb.cs
- DocumentPageView.cs
- CoreSwitches.cs
- PasswordBox.cs
- Speller.cs
- IfAction.cs
- HtmlInputHidden.cs
- MetadataCache.cs
- IndexExpression.cs
- ScriptRef.cs
- StylusTip.cs
- SafeReversePInvokeHandle.cs
- DispatcherEventArgs.cs
- ScriptModule.cs