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 / SessionPageStateSection.cs / 1 / SessionPageStateSection.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.ComponentModel; using System.Web.Util; using System.Diagnostics; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SessionPageStateSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; public const int DefaultHistorySize = 9; // #region Property Declarations private static readonly ConfigurationProperty _propHistorySize = new ConfigurationProperty("historySize", typeof(int), DefaultHistorySize, null, StdValidatorsAndConverters.NonZeroPositiveIntegerValidator, ConfigurationPropertyOptions.None); #endregion static SessionPageStateSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propHistorySize); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("historySize", DefaultValue = DefaultHistorySize)] [IntegerValidator(MinValue = 1)] public int HistorySize { get { return (int)base[_propHistorySize]; } set { base[_propHistorySize] = 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.ComponentModel; using System.Web.Util; using System.Diagnostics; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class SessionPageStateSection : ConfigurationSection { private static ConfigurationPropertyCollection _properties; public const int DefaultHistorySize = 9; // #region Property Declarations private static readonly ConfigurationProperty _propHistorySize = new ConfigurationProperty("historySize", typeof(int), DefaultHistorySize, null, StdValidatorsAndConverters.NonZeroPositiveIntegerValidator, ConfigurationPropertyOptions.None); #endregion static SessionPageStateSection() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propHistorySize); } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("historySize", DefaultValue = DefaultHistorySize)] [IntegerValidator(MinValue = 1)] public int HistorySize { get { return (int)base[_propHistorySize]; } set { base[_propHistorySize] = 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
- PaintValueEventArgs.cs
- StateBag.cs
- TdsEnums.cs
- NCryptNative.cs
- SecurityCriticalDataForSet.cs
- ArglessEventHandlerProxy.cs
- ValidationSummary.cs
- mactripleDES.cs
- WizardStepBase.cs
- AppearanceEditorPart.cs
- CompilationLock.cs
- DragEventArgs.cs
- SqlDataSourceEnumerator.cs
- MultipartContentParser.cs
- MetadataItemSerializer.cs
- ExtractedStateEntry.cs
- DirectoryObjectSecurity.cs
- IISUnsafeMethods.cs
- GridView.cs
- XmlWriterSettings.cs
- X500Name.cs
- DecimalAnimation.cs
- CacheManager.cs
- CheckPair.cs
- NetworkInformationException.cs
- SemanticResultKey.cs
- OdbcDataAdapter.cs
- CleanUpVirtualizedItemEventArgs.cs
- IncrementalCompileAnalyzer.cs
- PeerUnsafeNativeMethods.cs
- DataControlReferenceCollection.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- ToolBarButton.cs
- BindingExpressionUncommonField.cs
- IODescriptionAttribute.cs
- RepeatButtonAutomationPeer.cs
- MimePart.cs
- Int32AnimationUsingKeyFrames.cs
- CommandManager.cs
- FormatterConverter.cs
- DispatcherTimer.cs
- AutoResetEvent.cs
- PassportAuthenticationEventArgs.cs
- DriveNotFoundException.cs
- ObjectManager.cs
- TimeSpanStorage.cs
- XpsFixedPageReaderWriter.cs
- XmlCollation.cs
- PerformanceCounterPermission.cs
- AnonymousIdentificationModule.cs
- RowSpanVector.cs
- UIElement3D.cs
- DbSourceParameterCollection.cs
- ComponentEditorPage.cs
- GeneralTransform3DCollection.cs
- ActivityTrace.cs
- UntrustedRecipientException.cs
- ViewGenerator.cs
- BitmapEffectDrawingContextState.cs
- MouseCaptureWithinProperty.cs
- NullableConverter.cs
- BaseCodeDomTreeGenerator.cs
- KeyEvent.cs
- ListViewUpdatedEventArgs.cs
- CheckBoxFlatAdapter.cs
- ExceptionRoutedEventArgs.cs
- StatusBarItemAutomationPeer.cs
- ApplicationContext.cs
- Subordinate.cs
- WorkflowServiceHost.cs
- DiscoveryVersionConverter.cs
- DbMetaDataCollectionNames.cs
- OletxCommittableTransaction.cs
- GroupDescription.cs
- ConfigXmlComment.cs
- Cursor.cs
- AnnotationComponentManager.cs
- WindowsMenu.cs
- DeleteWorkflowOwnerCommand.cs
- PersonalizationProviderHelper.cs
- StsCommunicationException.cs
- BindingList.cs
- WebServiceHandlerFactory.cs
- DoubleCollection.cs
- RulePatternOps.cs
- InputManager.cs
- RecordsAffectedEventArgs.cs
- GreaterThanOrEqual.cs
- FileUtil.cs
- IntSecurity.cs
- ResourcePart.cs
- MediaTimeline.cs
- PersonalizationStateQuery.cs
- StrokeNodeData.cs
- ElapsedEventArgs.cs
- WSDualHttpSecurityElement.cs
- CompositeFontFamily.cs
- SourceItem.cs
- RegisteredArrayDeclaration.cs
- DetailsViewCommandEventArgs.cs