Code:
/ DotNET / DotNET / 8.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
- addressfiltermode.cs
- LongValidatorAttribute.cs
- DataControlPagerLinkButton.cs
- EncryptedPackageFilter.cs
- SamlConstants.cs
- PageRanges.cs
- Point.cs
- ChannelSettingsElement.cs
- CopyNamespacesAction.cs
- NativeObjectSecurity.cs
- MatrixUtil.cs
- XmlILTrace.cs
- WindowsPrincipal.cs
- StylusPointProperty.cs
- securitycriticaldataClass.cs
- SelectionRangeConverter.cs
- MasterPageParser.cs
- Type.cs
- SqlClientPermission.cs
- PermissionSet.cs
- BindableTemplateBuilder.cs
- DataGridCellItemAutomationPeer.cs
- DataGridViewAccessibleObject.cs
- LabelDesigner.cs
- CodeChecksumPragma.cs
- XmlReflectionMember.cs
- ColorEditor.cs
- TextElement.cs
- WinEventTracker.cs
- relpropertyhelper.cs
- BinarySecretSecurityToken.cs
- SparseMemoryStream.cs
- TextElementEnumerator.cs
- Material.cs
- ListItemViewAttribute.cs
- ListViewGroup.cs
- ConfigurationSectionCollection.cs
- PropertyRecord.cs
- ResourceFallbackManager.cs
- FreezableCollection.cs
- FileInfo.cs
- RootNamespaceAttribute.cs
- TemplatePropertyEntry.cs
- documentsequencetextcontainer.cs
- BlurEffect.cs
- ActivityDesignerHelper.cs
- SurrogateSelector.cs
- BoolLiteral.cs
- PaintEvent.cs
- InvalidCastException.cs
- XmlAtomicValue.cs
- latinshape.cs
- SafeCryptoHandles.cs
- FillErrorEventArgs.cs
- DoubleStorage.cs
- WebPartHelpVerb.cs
- DesignerValidatorAdapter.cs
- DataSetUtil.cs
- SizeAnimationClockResource.cs
- BamlResourceDeserializer.cs
- IgnoreFlushAndCloseStream.cs
- Screen.cs
- Context.cs
- NativeDirectoryServicesQueryAPIs.cs
- ByeMessageCD1.cs
- GraphicsContext.cs
- AutomationPattern.cs
- followingsibling.cs
- RenamedEventArgs.cs
- SelectionWordBreaker.cs
- AVElementHelper.cs
- ConnectionConsumerAttribute.cs
- DbConnectionStringBuilder.cs
- LifetimeServices.cs
- HighContrastHelper.cs
- BaseTemplateCodeDomTreeGenerator.cs
- TableRowGroup.cs
- ListViewItemCollectionEditor.cs
- GrammarBuilderBase.cs
- AstTree.cs
- FileRecordSequenceHelper.cs
- Propagator.ExtentPlaceholderCreator.cs
- StoryFragments.cs
- UserPersonalizationStateInfo.cs
- RoutedPropertyChangedEventArgs.cs
- PageTextBox.cs
- ContentElementAutomationPeer.cs
- ButtonStandardAdapter.cs
- OdbcEnvironment.cs
- wgx_sdk_version.cs
- NamedPipeConnectionPoolSettingsElement.cs
- TemplateControl.cs
- DurableServiceAttribute.cs
- SHA256Managed.cs
- StorageAssociationSetMapping.cs
- DeclarativeCatalogPart.cs
- ConfigUtil.cs
- FrameworkRichTextComposition.cs
- CheckBox.cs
- MailSettingsSection.cs