Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- BitmapFrame.cs
- WebProxyScriptElement.cs
- LineVisual.cs
- HideDisabledControlAdapter.cs
- TimelineGroup.cs
- SharedPersonalizationStateInfo.cs
- MarkupCompiler.cs
- Frame.cs
- UInt64Storage.cs
- PrintController.cs
- DisposableCollectionWrapper.cs
- PrtCap_Reader.cs
- TextEditorMouse.cs
- FacetDescriptionElement.cs
- DataGridPagerStyle.cs
- PerfCounters.cs
- SlotInfo.cs
- XmlUnspecifiedAttribute.cs
- RegionIterator.cs
- NamespaceInfo.cs
- XmlAnyElementAttribute.cs
- ScriptReferenceEventArgs.cs
- DbConnectionPoolGroup.cs
- FixedTextSelectionProcessor.cs
- MembershipPasswordException.cs
- CodeAccessSecurityEngine.cs
- LinkTarget.cs
- PersianCalendar.cs
- XPathPatternBuilder.cs
- FlatButtonAppearance.cs
- MaskInputRejectedEventArgs.cs
- SkinIDTypeConverter.cs
- ShapeTypeface.cs
- VideoDrawing.cs
- Label.cs
- EventBookmark.cs
- AnnotationHighlightLayer.cs
- EmptyReadOnlyDictionaryInternal.cs
- HtmlEncodedRawTextWriter.cs
- UniformGrid.cs
- SchemaLookupTable.cs
- MissingFieldException.cs
- WmlLiteralTextAdapter.cs
- XmlText.cs
- HostedImpersonationContext.cs
- EmptyEnumerator.cs
- DependencyPropertyKind.cs
- KnowledgeBase.cs
- SerialPort.cs
- Pipe.cs
- UrlPath.cs
- QuaternionValueSerializer.cs
- EventItfInfo.cs
- ButtonChrome.cs
- TableCell.cs
- TagPrefixAttribute.cs
- QueryValue.cs
- SamlAdvice.cs
- CodeAttachEventStatement.cs
- TypeEnumerableViewSchema.cs
- BitmapEffectGeneralTransform.cs
- ConnectionStringSettings.cs
- WriteFileContext.cs
- TdsParserSessionPool.cs
- PartialArray.cs
- ParallelDesigner.xaml.cs
- EventlogProvider.cs
- AnimationException.cs
- ListViewCommandEventArgs.cs
- ContextMenuAutomationPeer.cs
- CodeIdentifier.cs
- EntityDataSourceContainerNameItem.cs
- Typography.cs
- XslCompiledTransform.cs
- SourceChangedEventArgs.cs
- CollectionContainer.cs
- DictionaryChange.cs
- RenderData.cs
- DataControlButton.cs
- PlainXmlDeserializer.cs
- ErrorProvider.cs
- ToolBarOverflowPanel.cs
- UnsafeNativeMethods.cs
- PreProcessInputEventArgs.cs
- BinaryMethodMessage.cs
- SelectorItemAutomationPeer.cs
- FileDialogCustomPlacesCollection.cs
- SettingsAttributeDictionary.cs
- SizeConverter.cs
- BoundColumn.cs
- EncodingDataItem.cs
- CharacterBufferReference.cs
- XPathExpr.cs
- LocalBuilder.cs
- PipeException.cs
- Setter.cs
- Parsers.cs
- DataRecordObjectView.cs
- UnknownExceptionActionHelper.cs
- RuleSettings.cs