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
- TableAdapterManagerMethodGenerator.cs
- Msec.cs
- DocumentProperties.cs
- XmlSchemaObjectCollection.cs
- Pen.cs
- OutputCacheSettings.cs
- DiagnosticsConfiguration.cs
- BorderGapMaskConverter.cs
- XmlQueryRuntime.cs
- ImmutableDispatchRuntime.cs
- oledbconnectionstring.cs
- TopClause.cs
- OleDbConnection.cs
- ListBindingHelper.cs
- HyperLinkStyle.cs
- HostProtectionException.cs
- CLSCompliantAttribute.cs
- SharedConnectionInfo.cs
- DesignerActionKeyboardBehavior.cs
- SpeechSynthesizer.cs
- WorkflowOwnershipException.cs
- TypeViewSchema.cs
- SystemColors.cs
- AssociationEndMember.cs
- _WinHttpWebProxyDataBuilder.cs
- TypeToStringValueConverter.cs
- FindResponse.cs
- MultiTouchSystemGestureLogic.cs
- DataSourceProvider.cs
- SponsorHelper.cs
- DataGridComboBoxColumn.cs
- PipelineModuleStepContainer.cs
- GlobalItem.cs
- WebPartsPersonalizationAuthorization.cs
- dataprotectionpermissionattribute.cs
- ParameterDataSourceExpression.cs
- TextTreeDeleteContentUndoUnit.cs
- TableDetailsRow.cs
- Camera.cs
- ProfileManager.cs
- StyleTypedPropertyAttribute.cs
- PathSegment.cs
- ExtenderProvidedPropertyAttribute.cs
- XmlnsCompatibleWithAttribute.cs
- ResourceReferenceExpression.cs
- TypeRestriction.cs
- ValueQuery.cs
- RestClientProxyHandler.cs
- FileChangesMonitor.cs
- X509PeerCertificateAuthenticationElement.cs
- EpmSyndicationContentSerializer.cs
- HostVisual.cs
- BindingUtils.cs
- XmlImplementation.cs
- DeferredSelectedIndexReference.cs
- WebPartDisplayModeCancelEventArgs.cs
- coordinatorscratchpad.cs
- SiteMapDataSource.cs
- FixedHyperLink.cs
- EventMappingSettingsCollection.cs
- SQLUtility.cs
- SafeLocalAllocation.cs
- HandlerFactoryCache.cs
- ApplicationContext.cs
- Events.cs
- ResXResourceWriter.cs
- ToolStripHighContrastRenderer.cs
- MetadataException.cs
- Serializer.cs
- ToolStripDropDownItem.cs
- Hyperlink.cs
- EditorZone.cs
- CompareInfo.cs
- OracleConnectionFactory.cs
- CodeTypeReferenceCollection.cs
- GregorianCalendarHelper.cs
- ReadOnlyHierarchicalDataSource.cs
- ChangeToolStripParentVerb.cs
- UnsafeNativeMethodsCLR.cs
- LayoutEditorPart.cs
- UnmanagedHandle.cs
- CancelEventArgs.cs
- BuildProvider.cs
- LinqDataSourceSelectEventArgs.cs
- ConstNode.cs
- SimpleWebHandlerParser.cs
- ClientOptions.cs
- CodeCastExpression.cs
- _KerberosClient.cs
- DefaultPrintController.cs
- SqlTrackingQuery.cs
- grammarelement.cs
- BinaryObjectWriter.cs
- InstanceKey.cs
- TrackPointCollection.cs
- CodeRegionDirective.cs
- UrlRoutingHandler.cs
- TypeCodeDomSerializer.cs
- AspNetSynchronizationContext.cs
- XmlBoundElement.cs