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
- ToolStripItem.cs
- StringAttributeCollection.cs
- _Events.cs
- MetadataCacheItem.cs
- ToolTipService.cs
- CodeTypeDelegate.cs
- ArgumentValueSerializer.cs
- ConfigXmlSignificantWhitespace.cs
- _Events.cs
- OleDbError.cs
- TabletDeviceInfo.cs
- CommentEmitter.cs
- SiteMembershipCondition.cs
- HttpDebugHandler.cs
- GridSplitterAutomationPeer.cs
- AggregateNode.cs
- RemoveStoryboard.cs
- WaitHandleCannotBeOpenedException.cs
- QilInvokeLateBound.cs
- AlternateViewCollection.cs
- TextEditorContextMenu.cs
- UnionExpr.cs
- FontResourceCache.cs
- ContentHostHelper.cs
- ClientSettingsSection.cs
- JavaScriptString.cs
- CapabilitiesRule.cs
- CommandLibraryHelper.cs
- SerializationObjectManager.cs
- WinFormsSecurity.cs
- LinqDataSource.cs
- PasswordBoxAutomationPeer.cs
- Animatable.cs
- CancellationTokenRegistration.cs
- CodeDelegateInvokeExpression.cs
- ButtonStandardAdapter.cs
- AdapterDictionary.cs
- InternalBufferManager.cs
- ProviderException.cs
- UnicodeEncoding.cs
- LinearKeyFrames.cs
- GenericWebPart.cs
- XmlDataSourceView.cs
- DesignerActionPropertyItem.cs
- VirtualizingStackPanel.cs
- DataContractSerializer.cs
- MappingMetadataHelper.cs
- WebBrowser.cs
- HttpModuleAction.cs
- IntegerValidator.cs
- DesignerActionListCollection.cs
- InvalidCastException.cs
- WebBrowser.cs
- ToolStripDropDownMenu.cs
- HtmlSelect.cs
- EmptyStringExpandableObjectConverter.cs
- InteropExecutor.cs
- XmlSerializationGeneratedCode.cs
- TableSectionStyle.cs
- DataTableTypeConverter.cs
- WebPartEditorOkVerb.cs
- SQLByte.cs
- TypeDependencyAttribute.cs
- StaticResourceExtension.cs
- PropertyConverter.cs
- AssemblyBuilder.cs
- XhtmlBasicObjectListAdapter.cs
- GB18030Encoding.cs
- TableItemProviderWrapper.cs
- FontDriver.cs
- CommaDelimitedStringAttributeCollectionConverter.cs
- UserPersonalizationStateInfo.cs
- HttpCacheParams.cs
- InstanceKeyCompleteException.cs
- ReferenceAssemblyAttribute.cs
- TextFindEngine.cs
- ReliableMessagingVersionConverter.cs
- KeyedHashAlgorithm.cs
- QueryCursorEventArgs.cs
- SchemeSettingElementCollection.cs
- MembershipUser.cs
- PriorityRange.cs
- TouchDevice.cs
- HttpConfigurationContext.cs
- OperationContext.cs
- Operators.cs
- DecoderBestFitFallback.cs
- TextBoxAutoCompleteSourceConverter.cs
- HostedController.cs
- WindowsListViewScroll.cs
- DataTemplateSelector.cs
- ServiceHttpHandlerFactory.cs
- codemethodreferenceexpression.cs
- UIElementParagraph.cs
- TableRow.cs
- DeferrableContentConverter.cs
- XmlSchemaSimpleTypeUnion.cs
- MaterialGroup.cs
- HandleCollector.cs
- ExclusiveHandle.cs