Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / xsp / System / Web / Configuration / HostingEnvironmentSection.cs / 1 / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CodePageEncoding.cs
- MessageSmuggler.cs
- ProfileSection.cs
- OneWayBindingElementImporter.cs
- Environment.cs
- MbpInfo.cs
- Resources.Designer.cs
- TextTreeExtractElementUndoUnit.cs
- SimpleLine.cs
- DefaultEventAttribute.cs
- OrderPreservingPipeliningMergeHelper.cs
- CookieProtection.cs
- TypefaceMap.cs
- ProviderCollection.cs
- SoapObjectWriter.cs
- HttpCachePolicyElement.cs
- KeyboardEventArgs.cs
- Brush.cs
- SqlDesignerDataSourceView.cs
- SiteOfOriginPart.cs
- KeyedCollection.cs
- WebServicesSection.cs
- BitmapEffectOutputConnector.cs
- UICuesEvent.cs
- ScopelessEnumAttribute.cs
- CopyNamespacesAction.cs
- HScrollProperties.cs
- ProtectedConfiguration.cs
- IssuanceLicense.cs
- XmlElementList.cs
- SchemaImporter.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- EmptyCollection.cs
- ExpressionPrefixAttribute.cs
- PeerInvitationResponse.cs
- TreeViewAutomationPeer.cs
- RowType.cs
- EndpointAddressMessageFilter.cs
- ColorIndependentAnimationStorage.cs
- MetadataItemCollectionFactory.cs
- MimeMultiPart.cs
- CharUnicodeInfo.cs
- StatusStrip.cs
- UriSection.cs
- UrlSyndicationContent.cs
- PropertyGeneratedEventArgs.cs
- ServiceEndpoint.cs
- baseaxisquery.cs
- HttpRequest.cs
- Propagator.JoinPropagator.cs
- BoundingRectTracker.cs
- QueryActivatableWorkflowsCommand.cs
- CustomErrorsSectionWrapper.cs
- LayoutSettings.cs
- SaveFileDialog.cs
- Timer.cs
- dbenumerator.cs
- LambdaCompiler.Binary.cs
- DataTableMapping.cs
- SoapFault.cs
- EndPoint.cs
- HijriCalendar.cs
- DesignerMetadata.cs
- columnmapfactory.cs
- BaseCollection.cs
- SerialReceived.cs
- CharAnimationBase.cs
- AspCompat.cs
- WindowsComboBox.cs
- ResolveResponseInfo.cs
- Argument.cs
- HttpWriter.cs
- RefreshEventArgs.cs
- CaseCqlBlock.cs
- Point3DIndependentAnimationStorage.cs
- DiffuseMaterial.cs
- LinqDataSourceValidationException.cs
- SmtpSection.cs
- SendKeys.cs
- BinHexEncoder.cs
- PerformanceCounterPermissionEntryCollection.cs
- XsdBuildProvider.cs
- _FtpDataStream.cs
- DbParameterCollectionHelper.cs
- ScrollViewer.cs
- Base64Encoder.cs
- StringPropertyBuilder.cs
- mediaeventshelper.cs
- QueryParameter.cs
- GlyphsSerializer.cs
- QueryResponse.cs
- ActivationWorker.cs
- MiniConstructorInfo.cs
- StateInitialization.cs
- ResXResourceWriter.cs
- TransformedBitmap.cs
- ValueChangedEventManager.cs
- TextElement.cs
- PersonalizationAdministration.cs
- NamedPipeAppDomainProtocolHandler.cs