Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / HostingEnvironmentSection.cs / 2 / 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; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class HostingEnvironmentSection : ConfigurationSection { internal const int DefaultShutdownTimeout = 30; internal static readonly TimeSpan DefaultIdleTimeout = TimeSpan.MaxValue; // default is Infinite 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); /**/ static HostingEnvironmentSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propIdleTimeout); _properties.Add(_propShutdownTimeout); _properties.Add(_propShadowCopyBinAssemblies); } 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; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Function.cs
- ScriptManagerProxy.cs
- EditingContext.cs
- Evidence.cs
- DecimalConverter.cs
- OlePropertyStructs.cs
- InputLanguage.cs
- SessionEndingCancelEventArgs.cs
- FlowDocumentPageViewerAutomationPeer.cs
- XamlToRtfParser.cs
- MenuCommands.cs
- TemplateControlBuildProvider.cs
- SafeHandles.cs
- XmlSchemaAttributeGroupRef.cs
- DataGridViewRowCancelEventArgs.cs
- ResourceProviderFactory.cs
- PropertyEmitterBase.cs
- PropertyConverter.cs
- DependentTransaction.cs
- input.cs
- TransactionWaitAsyncResult.cs
- IPAddress.cs
- LinkConverter.cs
- MDIWindowDialog.cs
- ConstructorBuilder.cs
- ConfigurationManager.cs
- VersionUtil.cs
- UnaryNode.cs
- Focus.cs
- WmfPlaceableFileHeader.cs
- ObjectFullSpanRewriter.cs
- KeyedHashAlgorithm.cs
- TimersDescriptionAttribute.cs
- KeyEvent.cs
- CFStream.cs
- Win32Native.cs
- EntityContainerEmitter.cs
- AnchorEditor.cs
- XmlRawWriterWrapper.cs
- XmlDocumentType.cs
- XamlReaderHelper.cs
- WmpBitmapEncoder.cs
- RegexCaptureCollection.cs
- DefaultObjectMappingItemCollection.cs
- EvidenceBase.cs
- SHA1CryptoServiceProvider.cs
- ControlPropertyNameConverter.cs
- Fonts.cs
- VoiceSynthesis.cs
- SqlConnectionPoolProviderInfo.cs
- HostingEnvironmentWrapper.cs
- SvcMapFile.cs
- FamilyTypeface.cs
- compensatingcollection.cs
- DataControlLinkButton.cs
- HGlobalSafeHandle.cs
- _Semaphore.cs
- PageContentCollection.cs
- TransformerTypeCollection.cs
- XmlDataSource.cs
- TextSpan.cs
- EntityDataSourceMemberPath.cs
- CrossAppDomainChannel.cs
- StoreAnnotationsMap.cs
- URL.cs
- PerspectiveCamera.cs
- SortQuery.cs
- Timer.cs
- CodePageEncoding.cs
- AffineTransform3D.cs
- DateTimeFormatInfoScanner.cs
- EdgeModeValidation.cs
- EncodingFallbackAwareXmlTextWriter.cs
- PrintingPermissionAttribute.cs
- AttributedMetaModel.cs
- ResXResourceReader.cs
- Oid.cs
- hebrewshape.cs
- InvalidWMPVersionException.cs
- MenuItemAutomationPeer.cs
- PauseStoryboard.cs
- CfgArc.cs
- ClickablePoint.cs
- AutoScrollExpandMessageFilter.cs
- XmlSchemaCollection.cs
- FactoryId.cs
- WaitHandle.cs
- SQLMembershipProvider.cs
- XmlUnspecifiedAttribute.cs
- ClientSettingsSection.cs
- DesignerMetadata.cs
- UrlMapping.cs
- FastEncoder.cs
- AssemblyInfo.cs
- KeyedHashAlgorithm.cs
- QilPatternFactory.cs
- StreamingContext.cs
- DataObjectMethodAttribute.cs
- ObjectNavigationPropertyMapping.cs
- FilterException.cs