Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / Configuration / StdValidatorsAndConverters.cs / 2 / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OutputCacheModule.cs
- SByte.cs
- ApplicationInfo.cs
- PersonalizationStateInfo.cs
- QueryCacheKey.cs
- CodeMethodMap.cs
- LogicalExpr.cs
- HwndTarget.cs
- SByte.cs
- XmlElementAttributes.cs
- input.cs
- TCPClient.cs
- UserControlAutomationPeer.cs
- RotateTransform3D.cs
- MappingException.cs
- WorkItem.cs
- TextBreakpoint.cs
- XPathParser.cs
- OAVariantLib.cs
- ToolboxControl.cs
- ButtonAutomationPeer.cs
- CompiledRegexRunner.cs
- UnhandledExceptionEventArgs.cs
- DocumentXmlWriter.cs
- VectorCollectionConverter.cs
- UInt16.cs
- DuplicateContext.cs
- TextTreeRootTextBlock.cs
- MessagePropertyFilter.cs
- HostSecurityManager.cs
- SplineQuaternionKeyFrame.cs
- HandlerBase.cs
- Baml2006Reader.cs
- DrawingGroupDrawingContext.cs
- DataGridViewRowHeaderCell.cs
- ConfigurationStrings.cs
- ToolboxBitmapAttribute.cs
- SplineKeyFrames.cs
- XmlTypeAttribute.cs
- GridErrorDlg.cs
- NumberAction.cs
- ColumnClickEvent.cs
- StyleCollectionEditor.cs
- ProviderSettings.cs
- AttributeEmitter.cs
- ListDictionaryInternal.cs
- Empty.cs
- ConfigurationSection.cs
- CultureMapper.cs
- RegistrationServices.cs
- MouseWheelEventArgs.cs
- SharedPersonalizationStateInfo.cs
- SqlBulkCopyColumnMappingCollection.cs
- SelfIssuedAuthRSAPKCS1SignatureDeformatter.cs
- ProviderManager.cs
- PrincipalPermission.cs
- _FtpDataStream.cs
- RootBrowserWindowAutomationPeer.cs
- _SslSessionsCache.cs
- QueryCreatedEventArgs.cs
- CodeTypeDelegate.cs
- ContractMapping.cs
- Enum.cs
- BindUriHelper.cs
- WindowsListViewScroll.cs
- SourceChangedEventArgs.cs
- InputLanguageCollection.cs
- ReachFixedPageSerializerAsync.cs
- HtmlEmptyTagControlBuilder.cs
- OdbcConnectionString.cs
- AsyncResult.cs
- ZipIORawDataFileBlock.cs
- LeafCellTreeNode.cs
- OleDbTransaction.cs
- StrokeNode.cs
- cookieexception.cs
- TraceHwndHost.cs
- HtmlHead.cs
- TypeResolver.cs
- SecurityTokenSerializer.cs
- FixedSOMFixedBlock.cs
- EventsTab.cs
- ClientBuildManager.cs
- Range.cs
- ParserHooks.cs
- HtmlTable.cs
- FormatterConverter.cs
- ContentControl.cs
- EnterpriseServicesHelper.cs
- ComponentConverter.cs
- RequestCachePolicy.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- ACL.cs
- Tablet.cs
- Ports.cs
- TextElementEditingBehaviorAttribute.cs
- HandleExceptionArgs.cs
- ConcurrentStack.cs
- MetadataSet.cs
- PropertyEntry.cs