Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Net / System / Net / Configuration / TimeoutValidationAttribute.cs / 1 / TimeoutValidationAttribute.cs
namespace System.Net { using System; using System.Configuration; using System.ComponentModel; // NOTE [[....]]: The old validation attribute was removed from System.ll and is // replaced by more flexible and robust validation/conversion design. // The change bellow is a simple fix to make things work with the least possible change ( it is an integration break ) // However, we already have a built-in support for configuration properties that store // Type names. We do reccomend that all uses of the validator bellow are converted to // properties of type Type ( instead of string ) which use the TypeNameConverter from System.Configuration.dll // Feel free to ask me for more details if you decide to do the conversion internal sealed class TimeoutValidator : ConfigurationValidatorBase { bool _zeroValid = false; internal TimeoutValidator(bool zeroValid) { _zeroValid = zeroValid; } public override bool CanValidate( Type type ) { return ( type == typeof( int ) || type == typeof( long ) ); } public override void Validate( object value ) { if (value == null) return; int timeout = (int)value; if (_zeroValid && timeout == 0) return; if (timeout <= 0 && timeout != System.Threading.Timeout.Infinite) { // Note [[....]] : This is a lab integration fix. Old code did not have any error message at this point // This code change accomplishes the same result. However its highly reccomended that a specific error message is givven // to the user so they know what exaclty is the problem ( i.e. the value must be a positive integer or be Infinite ) // To accomplish this - an exception with the specific error message could be thrown ( ArgumentException is prefferred ) throw new ConfigurationErrorsException(SR.GetString(SR.net_io_timeout_use_gt_zero)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. namespace System.Net { using System; using System.Configuration; using System.ComponentModel; // NOTE [[....]]: The old validation attribute was removed from System.ll and is // replaced by more flexible and robust validation/conversion design. // The change bellow is a simple fix to make things work with the least possible change ( it is an integration break ) // However, we already have a built-in support for configuration properties that store // Type names. We do reccomend that all uses of the validator bellow are converted to // properties of type Type ( instead of string ) which use the TypeNameConverter from System.Configuration.dll // Feel free to ask me for more details if you decide to do the conversion internal sealed class TimeoutValidator : ConfigurationValidatorBase { bool _zeroValid = false; internal TimeoutValidator(bool zeroValid) { _zeroValid = zeroValid; } public override bool CanValidate( Type type ) { return ( type == typeof( int ) || type == typeof( long ) ); } public override void Validate( object value ) { if (value == null) return; int timeout = (int)value; if (_zeroValid && timeout == 0) return; if (timeout <= 0 && timeout != System.Threading.Timeout.Infinite) { // Note [[....]] : This is a lab integration fix. Old code did not have any error message at this point // This code change accomplishes the same result. However its highly reccomended that a specific error message is givven // to the user so they know what exaclty is the problem ( i.e. the value must be a positive integer or be Infinite ) // To accomplish this - an exception with the specific error message could be thrown ( ArgumentException is prefferred ) throw new ConfigurationErrorsException(SR.GetString(SR.net_io_timeout_use_gt_zero)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TableDesigner.cs
- DbTransaction.cs
- ChineseLunisolarCalendar.cs
- BuildManager.cs
- ConnectionManager.cs
- ScrollPattern.cs
- GroupStyle.cs
- XmlUrlEditor.cs
- SqlDataSourceView.cs
- Lease.cs
- StretchValidation.cs
- LinkLabelLinkClickedEvent.cs
- versioninfo.cs
- TripleDESCryptoServiceProvider.cs
- SafeCoTaskMem.cs
- SmiEventSink.cs
- GenericEnumConverter.cs
- PageFunction.cs
- MimeFormImporter.cs
- MetaForeignKeyColumn.cs
- GeneralTransform2DTo3DTo2D.cs
- WebResourceAttribute.cs
- MessageAction.cs
- RelationshipNavigation.cs
- ToolStripContextMenu.cs
- NeedSkipTokenVisitor.cs
- FixUpCollection.cs
- MasterPageCodeDomTreeGenerator.cs
- SessionEndingEventArgs.cs
- MimeTypePropertyAttribute.cs
- ToolboxBitmapAttribute.cs
- FontDialog.cs
- ComplexPropertyEntry.cs
- AdjustableArrowCap.cs
- InvalidOperationException.cs
- StorageBasedPackageProperties.cs
- IisTraceWebEventProvider.cs
- ValidationRuleCollection.cs
- ExplicitDiscriminatorMap.cs
- PersonalizationStateQuery.cs
- StrongNameMembershipCondition.cs
- BitmapInitialize.cs
- SafeProcessHandle.cs
- ConfigurationLocationCollection.cs
- DefaultValidator.cs
- HtmlHistory.cs
- TimeZone.cs
- MenuItem.cs
- TcpSocketManager.cs
- PropertyNames.cs
- Context.cs
- AutomationPatternInfo.cs
- RelOps.cs
- ConfigurationStrings.cs
- ResolveResponse.cs
- AxImporter.cs
- MouseWheelEventArgs.cs
- XmlElement.cs
- MemberAccessException.cs
- CompilerErrorCollection.cs
- TextCharacters.cs
- NameValueFileSectionHandler.cs
- AnnouncementSendsAsyncResult.cs
- ResourceCategoryAttribute.cs
- Util.cs
- SchemaTableOptionalColumn.cs
- Missing.cs
- X509Extension.cs
- XhtmlBasicPhoneCallAdapter.cs
- SignedXml.cs
- Metadata.cs
- SourceItem.cs
- COM2ExtendedTypeConverter.cs
- ValidationError.cs
- XhtmlBasicPhoneCallAdapter.cs
- CustomWebEventKey.cs
- MiniAssembly.cs
- Geometry.cs
- WeakReferenceEnumerator.cs
- FilteredDataSetHelper.cs
- DataGridViewCellStateChangedEventArgs.cs
- RawStylusInputReport.cs
- ListInitExpression.cs
- LookupNode.cs
- ConfigurationStrings.cs
- ToolBarPanel.cs
- RbTree.cs
- HandleCollector.cs
- ModelPropertyImpl.cs
- OdbcConnectionFactory.cs
- LeftCellWrapper.cs
- SqlNodeAnnotations.cs
- AnimatedTypeHelpers.cs
- DuplicateWaitObjectException.cs
- OpCodes.cs
- InternalConfigHost.cs
- ExtenderControl.cs
- DesignConnectionCollection.cs
- HttpValueCollection.cs
- DataControlPagerLinkButton.cs