Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / StdValidatorsAndConverters.cs / 1305376 / StdValidatorsAndConverters.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Configuration; using System.ComponentModel; namespace System.Web.Configuration { // Common shared validators and type converter instances internal static class StdValidatorsAndConverters { static private TypeConverter s_infiniteTimeSpanConverter; static private TypeConverter s_timeSpanMinutesConverter; static private TypeConverter s_timeSpanMinutesOrInfiniteConverter; static private TypeConverter s_timeSpanSecondsConverter; static private TypeConverter s_timeSpanSecondsOrInfiniteConverter; static private TypeConverter s_whiteSpaceTrimStringConverter; static private TypeConverter s_versionConverter; static private ConfigurationValidatorBase s_positiveTimeSpanValidator; static private ConfigurationValidatorBase s_nonEmptyStringValidator; static private ConfigurationValidatorBase s_nonZeroPositiveIntegerValidator; static private ConfigurationValidatorBase s_positiveIntegerValidator; static internal TypeConverter InfiniteTimeSpanConverter { get { if (s_infiniteTimeSpanConverter == null) { s_infiniteTimeSpanConverter = new InfiniteTimeSpanConverter(); } return s_infiniteTimeSpanConverter; } } static internal TypeConverter TimeSpanMinutesConverter { get { if (s_timeSpanMinutesConverter == null) { s_timeSpanMinutesConverter = new TimeSpanMinutesConverter(); } return s_timeSpanMinutesConverter; } } static internal TypeConverter TimeSpanMinutesOrInfiniteConverter { get { if (s_timeSpanMinutesOrInfiniteConverter == null) { s_timeSpanMinutesOrInfiniteConverter = new TimeSpanMinutesOrInfiniteConverter(); } return s_timeSpanMinutesOrInfiniteConverter; } } static internal TypeConverter TimeSpanSecondsConverter { get { if (s_timeSpanSecondsConverter == null) { s_timeSpanSecondsConverter = new TimeSpanSecondsConverter(); } return s_timeSpanSecondsConverter; } } static internal TypeConverter TimeSpanSecondsOrInfiniteConverter { get { if (s_timeSpanSecondsOrInfiniteConverter == null) { s_timeSpanSecondsOrInfiniteConverter = new TimeSpanSecondsOrInfiniteConverter(); } return s_timeSpanSecondsOrInfiniteConverter; } } static internal TypeConverter WhiteSpaceTrimStringConverter { get { if (s_whiteSpaceTrimStringConverter == null) { s_whiteSpaceTrimStringConverter = new WhiteSpaceTrimStringConverter(); } return s_whiteSpaceTrimStringConverter; } } static internal TypeConverter VersionConverter { get { if (s_versionConverter == null) { s_versionConverter = new VersionConverter(); } return s_versionConverter; } } static internal ConfigurationValidatorBase PositiveTimeSpanValidator { get { if (s_positiveTimeSpanValidator == null) { s_positiveTimeSpanValidator = new PositiveTimeSpanValidator(); } return s_positiveTimeSpanValidator; } } static internal ConfigurationValidatorBase NonEmptyStringValidator { get { if (s_nonEmptyStringValidator == null) { s_nonEmptyStringValidator = new StringValidator(1); } return s_nonEmptyStringValidator; } } static internal ConfigurationValidatorBase NonZeroPositiveIntegerValidator { get { if (s_nonZeroPositiveIntegerValidator == null) { s_nonZeroPositiveIntegerValidator = new IntegerValidator(1, int.MaxValue); } return s_nonZeroPositiveIntegerValidator; } } static internal ConfigurationValidatorBase PositiveIntegerValidator { get { if (s_positiveIntegerValidator == null) { s_positiveIntegerValidator = new IntegerValidator(0, int.MaxValue); } return s_positiveIntegerValidator; } } } } // 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
- DataGridViewColumnHeaderCell.cs
- ComAdminWrapper.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- ItemType.cs
- WindowsListViewItemStartMenu.cs
- HMACSHA512.cs
- PaintValueEventArgs.cs
- MultiView.cs
- Attributes.cs
- WebFormDesignerActionService.cs
- MetadataHelper.cs
- ColorTransform.cs
- StorageAssociationTypeMapping.cs
- metadatamappinghashervisitor.cs
- Grid.cs
- ThemeDirectoryCompiler.cs
- FontFamilyIdentifier.cs
- CommandManager.cs
- WizardPanelChangingEventArgs.cs
- WindowsBrush.cs
- AutomationIdentifier.cs
- DashStyles.cs
- StrokeNodeData.cs
- BitmapData.cs
- MainMenu.cs
- FSWPathEditor.cs
- DropTarget.cs
- CharAnimationBase.cs
- DESCryptoServiceProvider.cs
- SctClaimDictionary.cs
- DBPropSet.cs
- SortedList.cs
- AliasGenerator.cs
- WebPartEditVerb.cs
- AmbientLight.cs
- CodeTypeMemberCollection.cs
- PlainXmlSerializer.cs
- ProfileParameter.cs
- BooleanKeyFrameCollection.cs
- HwndSource.cs
- SharedConnectionWorkflowTransactionService.cs
- DatePickerTextBox.cs
- BatchWriter.cs
- ChannelManagerHelpers.cs
- DataGridViewCellValidatingEventArgs.cs
- CodeTryCatchFinallyStatement.cs
- EpmSourcePathSegment.cs
- Block.cs
- SessionStateModule.cs
- TableProviderWrapper.cs
- UnconditionalPolicy.cs
- Transform3DGroup.cs
- CookieHandler.cs
- TrackBarDesigner.cs
- ServiceNameElementCollection.cs
- DataViewSetting.cs
- SqlCacheDependencyDatabaseCollection.cs
- LineMetrics.cs
- RegexGroup.cs
- CssTextWriter.cs
- ExpressionWriter.cs
- MarkupCompilePass2.cs
- EventDescriptor.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- AvTraceDetails.cs
- Clipboard.cs
- BaseCollection.cs
- ReadOnlyDictionary.cs
- FrugalMap.cs
- MeasureItemEvent.cs
- WindowHideOrCloseTracker.cs
- _NTAuthentication.cs
- PolyBezierSegment.cs
- XmlCharacterData.cs
- GifBitmapDecoder.cs
- RepeatButtonAutomationPeer.cs
- ZipIOLocalFileHeader.cs
- SecurityDescriptor.cs
- MarkupCompilePass2.cs
- DllNotFoundException.cs
- TemplateBamlTreeBuilder.cs
- ArrayList.cs
- TextDecoration.cs
- IdentityModelStringsVersion1.cs
- FederatedMessageSecurityOverHttp.cs
- ConsoleEntryPoint.cs
- PhotoPrintingIntent.cs
- ExcludeFromCodeCoverageAttribute.cs
- PropertiesTab.cs
- coordinator.cs
- BulletedList.cs
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- URLEditor.cs
- WsdlImporterElement.cs
- EmptyControlCollection.cs
- StringValidator.cs
- EventLogEntryCollection.cs
- PairComparer.cs
- ParsedAttributeCollection.cs
- SmtpNegotiateAuthenticationModule.cs