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 / ProfileSettings.cs / 1 / 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 } // 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.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 } // 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
- XXXInfos.cs
- TrackingProfile.cs
- DBDataPermission.cs
- CellTreeNode.cs
- EdmEntityTypeAttribute.cs
- SocketPermission.cs
- ActivitySurrogateSelector.cs
- ListDictionary.cs
- SqlRetyper.cs
- HeaderCollection.cs
- ConfigurationElement.cs
- StorageFunctionMapping.cs
- NativeMsmqMessage.cs
- TextTreeTextBlock.cs
- TabControl.cs
- EncoderNLS.cs
- ToolStripSplitStackLayout.cs
- CacheOutputQuery.cs
- CommentEmitter.cs
- GC.cs
- ViewBox.cs
- ConfigurationStrings.cs
- PrimitiveType.cs
- FontNameEditor.cs
- FormViewUpdatedEventArgs.cs
- Application.cs
- QilPatternVisitor.cs
- ActivityExecutionContext.cs
- ListControl.cs
- SqlBulkCopy.cs
- QuadraticBezierSegment.cs
- DefaultWorkflowSchedulerService.cs
- XmlSchemaInclude.cs
- AsnEncodedData.cs
- PeerApplicationLaunchInfo.cs
- TimeZoneNotFoundException.cs
- StaticSiteMapProvider.cs
- Int32CollectionConverter.cs
- contentDescriptor.cs
- RenamedEventArgs.cs
- RuleConditionDialog.cs
- Attributes.cs
- DockPanel.cs
- TabControlEvent.cs
- StackBuilderSink.cs
- MergeFilterQuery.cs
- CallbackValidator.cs
- DesignerVerbToolStripMenuItem.cs
- DataViewListener.cs
- Misc.cs
- DBParameter.cs
- CmsUtils.cs
- SafeEventLogReadHandle.cs
- HwndSubclass.cs
- OverrideMode.cs
- OnOperation.cs
- OledbConnectionStringbuilder.cs
- PixelShader.cs
- InternalConfigRoot.cs
- UndoManager.cs
- ModelFunction.cs
- ExclusiveCanonicalizationTransform.cs
- StringDictionary.cs
- OutputCacheSection.cs
- Vector3dCollection.cs
- storepermissionattribute.cs
- SqlUserDefinedTypeAttribute.cs
- TextFormatterImp.cs
- LostFocusEventManager.cs
- EdmScalarPropertyAttribute.cs
- AbstractDataSvcMapFileLoader.cs
- EncryptedData.cs
- MemoryFailPoint.cs
- CutCopyPasteHelper.cs
- IndentedTextWriter.cs
- XPathAncestorQuery.cs
- TemplateInstanceAttribute.cs
- ProviderUtil.cs
- SQLDateTime.cs
- Camera.cs
- TimeoutStream.cs
- PseudoWebRequest.cs
- SqlDataSourceSelectingEventArgs.cs
- SchemaCollectionCompiler.cs
- MD5.cs
- ServiceDescriptions.cs
- GeometryDrawing.cs
- MultiDataTrigger.cs
- ZipIORawDataFileBlock.cs
- ContextMenuService.cs
- TabletDeviceInfo.cs
- URLIdentityPermission.cs
- util.cs
- SimplePropertyEntry.cs
- QueryModel.cs
- ServiceRoute.cs
- Triplet.cs
- ViewUtilities.cs
- DocumentCollection.cs
- PropertiesTab.cs