Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / ProfileSettings.cs / 2 / ProfileSettings.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.Hosting; using System.Web.Util; using System.Web.Configuration; using System.Web.Management; using System.Web.Compilation; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class ProfileSettings : ConfigurationElement { private static ConfigurationPropertyCollection _properties; private static readonly ConfigurationProperty _propName = new ConfigurationProperty("name", typeof(string), null, null, StdValidatorsAndConverters.NonEmptyStringValidator, ConfigurationPropertyOptions.IsRequired | ConfigurationPropertyOptions.IsKey); private static readonly ConfigurationProperty _propMinInstances = new ConfigurationProperty("minInstances", typeof(int), RuleSettings.DEFAULT_MIN_INSTANCES, null, StdValidatorsAndConverters.NonZeroPositiveIntegerValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMaxLimit = new ConfigurationProperty("maxLimit", typeof(int), RuleSettings.DEFAULT_MAX_LIMIT, new InfiniteIntConverter(), StdValidatorsAndConverters.PositiveIntegerValidator, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propMinInterval = new ConfigurationProperty("minInterval", typeof(TimeSpan), RuleSettings.DEFAULT_MIN_INTERVAL, StdValidatorsAndConverters.InfiniteTimeSpanConverter, null, ConfigurationPropertyOptions.None); private static readonly ConfigurationProperty _propCustom = new ConfigurationProperty("custom", typeof(string), String.Empty, ConfigurationPropertyOptions.None); static ProfileSettings() { // Property initialization _properties = new ConfigurationPropertyCollection(); _properties.Add(_propName); _properties.Add(_propMinInstances); _properties.Add(_propMaxLimit); _properties.Add(_propMinInterval); _properties.Add(_propCustom); } internal ProfileSettings() { } public ProfileSettings(String name) : this() { Name = name; } public ProfileSettings(String name, int minInstances, int maxLimit, TimeSpan minInterval) : this(name) { MinInstances = minInstances; MaxLimit = maxLimit; MinInterval = minInterval; } public ProfileSettings(String name, int minInstances, int maxLimit, TimeSpan minInterval, string custom) : this(name) { MinInstances = minInstances; MaxLimit = maxLimit; MinInterval = minInterval; Custom = custom; } protected override ConfigurationPropertyCollection Properties { get { return _properties; } } [ConfigurationProperty("name", IsRequired = true, IsKey = true, DefaultValue = "")] [StringValidator(MinLength = 1)] public String Name { get { return (string)base[_propName]; } set { base[_propName] = value; } } [ConfigurationProperty("minInstances", DefaultValue = 1)] [IntegerValidator(MinValue = 1)] public int MinInstances { get { return (int)base[_propMinInstances]; } set { base[_propMinInstances] = value; } } [ConfigurationProperty("maxLimit", DefaultValue = int.MaxValue)] [TypeConverter(typeof(InfiniteIntConverter))] [IntegerValidator(MinValue = 0)] public int MaxLimit { get { return (int)base[_propMaxLimit]; } set { base[_propMaxLimit] = value; } } [ConfigurationProperty("minInterval", DefaultValue = "00:00:00")] [TypeConverter(typeof(InfiniteTimeSpanConverter))] public TimeSpan MinInterval { get { return (TimeSpan)base[_propMinInterval]; } set { base[_propMinInterval] = value; } } [ConfigurationProperty("custom", DefaultValue = "")] public String Custom { get { return (string)base[_propCustom]; } set { base[_propCustom] = value; } } } // class ProfileSettings }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ReversePositionQuery.cs
- ProfileModule.cs
- StagingAreaInputItem.cs
- SafeFileMappingHandle.cs
- XmlSchemaAll.cs
- RequestCacheManager.cs
- ProxyAttribute.cs
- Listbox.cs
- WsatProxy.cs
- MetadataArtifactLoaderFile.cs
- WindowsTab.cs
- TimeSpanOrInfiniteConverter.cs
- WebBrowserBase.cs
- TextEndOfSegment.cs
- OperatingSystemVersionCheck.cs
- HTMLTagNameToTypeMapper.cs
- SRDisplayNameAttribute.cs
- TransactionManagerProxy.cs
- ListParaClient.cs
- DesignerWidgets.cs
- XmlCompatibilityReader.cs
- ListViewGroupItemCollection.cs
- PkcsMisc.cs
- DbDataSourceEnumerator.cs
- PerformanceCounterCategory.cs
- RelationshipEndMember.cs
- OciLobLocator.cs
- PrinterResolution.cs
- GridView.cs
- DefaultValueAttribute.cs
- DSASignatureDeformatter.cs
- SettingsBase.cs
- AssertFilter.cs
- XsdCachingReader.cs
- HashCodeCombiner.cs
- DataGridViewCheckBoxCell.cs
- SwitchLevelAttribute.cs
- LinearKeyFrames.cs
- EditorBrowsableAttribute.cs
- SplayTreeNode.cs
- MSAANativeProvider.cs
- VisualStyleTypesAndProperties.cs
- ConfigsHelper.cs
- SecurityContext.cs
- ProtectedProviderSettings.cs
- DBSqlParserColumnCollection.cs
- _StreamFramer.cs
- SecurityException.cs
- HyperLink.cs
- BindableAttribute.cs
- PointLightBase.cs
- HtmlHistory.cs
- DbResourceAllocator.cs
- InteropExecutor.cs
- RuntimeConfigLKG.cs
- ReservationCollection.cs
- ComponentResourceKey.cs
- ThreadAttributes.cs
- ValidationHelpers.cs
- CollectionChangedEventManager.cs
- TypedElement.cs
- EmptyCollection.cs
- ScriptResourceAttribute.cs
- SrgsOneOf.cs
- TextBlockAutomationPeer.cs
- TemplateField.cs
- BamlVersionHeader.cs
- ImageIndexConverter.cs
- XamlWrappingReader.cs
- ArithmeticLiteral.cs
- ProxyWebPartConnectionCollection.cs
- DictionaryEntry.cs
- WebPartConnectionsConnectVerb.cs
- WinInetCache.cs
- ListView.cs
- AttributeTable.cs
- StylusCaptureWithinProperty.cs
- AdapterUtil.cs
- AdjustableArrowCap.cs
- OptionalRstParameters.cs
- WindowsStartMenu.cs
- PackWebRequest.cs
- MachineKeyValidationConverter.cs
- OleDbConnection.cs
- PolicyChain.cs
- cookiecollection.cs
- XmlDataCollection.cs
- cookie.cs
- NativeMethods.cs
- CssTextWriter.cs
- ReceiveContext.cs
- DataRowView.cs
- TimeStampChecker.cs
- ExpressionsCollectionEditor.cs
- HttpValueCollection.cs
- SuppressIldasmAttribute.cs
- XmlLoader.cs
- CellParagraph.cs
- StaticContext.cs
- DocumentViewerBaseAutomationPeer.cs