Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / IntegerValidatorAttribute.cs / 1 / IntegerValidatorAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; namespace System.Configuration { [AttributeUsage(AttributeTargets.Property)] public sealed class IntegerValidatorAttribute : ConfigurationValidatorAttribute { private int _min = int.MinValue; private int _max = int.MaxValue; private bool _excludeRange = false; public IntegerValidatorAttribute() { } public override ConfigurationValidatorBase ValidatorInstance { get { return new IntegerValidator(_min, _max, _excludeRange); } } public int MinValue { get { return _min; } set { if (_max < value) { throw new ArgumentOutOfRangeException("value", SR.GetString(SR.Validator_min_greater_than_max)); } _min = value; } } public int MaxValue { get { return _max; } set { if (_min > value) { throw new ArgumentOutOfRangeException("value", SR.GetString(SR.Validator_min_greater_than_max)); } _max = value; } } public bool ExcludeRange { get { return _excludeRange; } set { _excludeRange = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; namespace System.Configuration { [AttributeUsage(AttributeTargets.Property)] public sealed class IntegerValidatorAttribute : ConfigurationValidatorAttribute { private int _min = int.MinValue; private int _max = int.MaxValue; private bool _excludeRange = false; public IntegerValidatorAttribute() { } public override ConfigurationValidatorBase ValidatorInstance { get { return new IntegerValidator(_min, _max, _excludeRange); } } public int MinValue { get { return _min; } set { if (_max < value) { throw new ArgumentOutOfRangeException("value", SR.GetString(SR.Validator_min_greater_than_max)); } _min = value; } } public int MaxValue { get { return _max; } set { if (_min > value) { throw new ArgumentOutOfRangeException("value", SR.GetString(SR.Validator_min_greater_than_max)); } _max = value; } } public bool ExcludeRange { get { return _excludeRange; } set { _excludeRange = value; } } } } // 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
- IEnumerable.cs
- WebBrowser.cs
- DataAdapter.cs
- SchemaDeclBase.cs
- EdmSchemaError.cs
- RelationshipSet.cs
- MobileResource.cs
- PointConverter.cs
- ParserContext.cs
- PreservationFileWriter.cs
- ToolStripSettings.cs
- CompiledXpathExpr.cs
- WithParamAction.cs
- AccessorTable.cs
- BaseDataBoundControl.cs
- TransformedBitmap.cs
- LockCookie.cs
- ClaimTypes.cs
- XmlAttribute.cs
- DesignerValidationSummaryAdapter.cs
- PropertyPanel.cs
- DependencyPropertyKind.cs
- DataGridTextBox.cs
- PageCopyCount.cs
- FixedSOMPageElement.cs
- NativeWrapper.cs
- Size3D.cs
- CodeConstructor.cs
- FontFamily.cs
- TypeToArgumentTypeConverter.cs
- SerializerProvider.cs
- Splitter.cs
- TemplateContainer.cs
- MethodToken.cs
- WrapPanel.cs
- DBCSCodePageEncoding.cs
- RepeaterItemCollection.cs
- Classification.cs
- SchemaInfo.cs
- WebPartPersonalization.cs
- Query.cs
- XmlSchemaAppInfo.cs
- EnumMemberAttribute.cs
- XmlSchemaAttribute.cs
- TrackingDataItemValue.cs
- ConditionalWeakTable.cs
- DirectoryNotFoundException.cs
- Converter.cs
- UnSafeCharBuffer.cs
- HttpModuleActionCollection.cs
- XmlProcessingInstruction.cs
- DbDataRecord.cs
- Site.cs
- TargetControlTypeCache.cs
- ControlBindingsCollection.cs
- PriorityChain.cs
- ControlPaint.cs
- KnownAssembliesSet.cs
- FastEncoder.cs
- CompositeDataBoundControl.cs
- HttpResponse.cs
- SchemaImporterExtensionElement.cs
- ApplicationFileParser.cs
- WebPartDescriptionCollection.cs
- Journaling.cs
- ProcessHost.cs
- PassportPrincipal.cs
- StickyNote.cs
- AccessDataSourceView.cs
- SmtpFailedRecipientException.cs
- UInt32.cs
- StatusBar.cs
- CodeAccessSecurityEngine.cs
- UnionExpr.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- Select.cs
- Html32TextWriter.cs
- ThemeDirectoryCompiler.cs
- TakeOrSkipWhileQueryOperator.cs
- ToolStripDropDown.cs
- PaperSource.cs
- XmlSchemaObjectCollection.cs
- ProfessionalColors.cs
- ListViewItem.cs
- DesignerEventService.cs
- StringOutput.cs
- Predicate.cs
- SafeEventLogReadHandle.cs
- DesignerGeometryHelper.cs
- DataGridTextBox.cs
- ProfileProvider.cs
- ValueTypeFixupInfo.cs
- CommandBindingCollection.cs
- LateBoundBitmapDecoder.cs
- SafeFileMappingHandle.cs
- WindowsUpDown.cs
- RoleGroupCollection.cs
- Utils.cs
- Base64Decoder.cs
- ListSortDescription.cs