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 / StdValidatorsAndConverters.cs / 1 / 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 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 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. //------------------------------------------------------------------------------ //// 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 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 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
- MessageQueue.cs
- EntityClientCacheEntry.cs
- InvalidCommandTreeException.cs
- MinMaxParagraphWidth.cs
- UnsignedPublishLicense.cs
- TlsnegoTokenProvider.cs
- DocumentPageView.cs
- MissingMemberException.cs
- Pens.cs
- TableDetailsRow.cs
- DoubleKeyFrameCollection.cs
- TypeUtil.cs
- WebPartConnectionsCloseVerb.cs
- SequenceRangeCollection.cs
- DBConnection.cs
- AttributeEmitter.cs
- DrawingCollection.cs
- GeneralTransform3DGroup.cs
- BitmapFrameDecode.cs
- DataExpression.cs
- ConfigUtil.cs
- CellIdBoolean.cs
- FormClosingEvent.cs
- PolicyAssertionCollection.cs
- ThousandthOfEmRealDoubles.cs
- DeploymentSection.cs
- WindowsScroll.cs
- UniformGrid.cs
- IndentTextWriter.cs
- GeometryDrawing.cs
- SoapAttributeAttribute.cs
- CalendarButtonAutomationPeer.cs
- DockAndAnchorLayout.cs
- DataTableNameHandler.cs
- CodeThrowExceptionStatement.cs
- QueryReaderSettings.cs
- DataTableReaderListener.cs
- CommentEmitter.cs
- IPGlobalProperties.cs
- StylusEventArgs.cs
- SafeRightsManagementQueryHandle.cs
- ProfileEventArgs.cs
- TypeElementCollection.cs
- ToolStripSeparatorRenderEventArgs.cs
- SqlPersonalizationProvider.cs
- __FastResourceComparer.cs
- UserControlDesigner.cs
- UnsignedPublishLicense.cs
- OdbcHandle.cs
- Ops.cs
- AsyncCallback.cs
- CodeVariableReferenceExpression.cs
- KnownTypesProvider.cs
- DesignColumn.cs
- FillBehavior.cs
- ChannelDispatcherCollection.cs
- ArrayConverter.cs
- Keywords.cs
- WindowsToolbar.cs
- StructuralObject.cs
- InputLanguageProfileNotifySink.cs
- ProviderUtil.cs
- TextEmbeddedObject.cs
- AncestorChangedEventArgs.cs
- QuaternionAnimationBase.cs
- _HeaderInfoTable.cs
- ObjectDataSource.cs
- SqlRowUpdatedEvent.cs
- MLangCodePageEncoding.cs
- SqlEnums.cs
- DrawToolTipEventArgs.cs
- MenuItemBindingCollection.cs
- CheckBox.cs
- IndexObject.cs
- RuleSettingsCollection.cs
- ValidationSummary.cs
- ReadOnlyTernaryTree.cs
- RectangleHotSpot.cs
- ResourceReferenceKeyNotFoundException.cs
- TrackingDataItemValue.cs
- SafeNativeMethods.cs
- ProjectionCamera.cs
- Span.cs
- AuthenticationModulesSection.cs
- Variable.cs
- ClientTargetCollection.cs
- PropertyManager.cs
- TextParagraph.cs
- CharUnicodeInfo.cs
- DetailsViewPageEventArgs.cs
- UTF32Encoding.cs
- PolyBezierSegmentFigureLogic.cs
- IconBitmapDecoder.cs
- StandardCommandToolStripMenuItem.cs
- WebScriptClientGenerator.cs
- EncryptedPackage.cs
- TransformGroup.cs
- CompoundFileReference.cs
- _BaseOverlappedAsyncResult.cs
- Calendar.cs