Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Net / System / Net / Configuration / TimeoutValidationAttribute.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UrlMappingsModule.cs
- FileNameEditor.cs
- SchemaElementDecl.cs
- InvalidWMPVersionException.cs
- BufferedGraphicsManager.cs
- PKCS1MaskGenerationMethod.cs
- ObjectDisposedException.cs
- PolyBezierSegmentFigureLogic.cs
- XmlNodeChangedEventArgs.cs
- AlphaSortedEnumConverter.cs
- ArgumentValue.cs
- Duration.cs
- EncoderNLS.cs
- NeutralResourcesLanguageAttribute.cs
- StrongName.cs
- BitArray.cs
- HttpServerUtilityBase.cs
- QuerySettings.cs
- TextBreakpoint.cs
- WindowsRichEdit.cs
- DocumentPageView.cs
- odbcmetadatacollectionnames.cs
- DescendentsWalker.cs
- HashSet.cs
- CurrentTimeZone.cs
- TableLayoutStyleCollection.cs
- MonitoringDescriptionAttribute.cs
- InternalEnumValidatorAttribute.cs
- PointLight.cs
- PriorityQueue.cs
- CodeTypeMemberCollection.cs
- ValidationSummary.cs
- CmsUtils.cs
- RectangleConverter.cs
- XmlKeywords.cs
- Script.cs
- ToolBarTray.cs
- MenuItemStyle.cs
- IMembershipProvider.cs
- ScaleTransform3D.cs
- CommonEndpointBehaviorElement.cs
- CodeObject.cs
- ContractHandle.cs
- NamedPipeTransportBindingElement.cs
- UnsafeNativeMethodsTablet.cs
- DataGridViewRowPrePaintEventArgs.cs
- TargetConverter.cs
- TransformedBitmap.cs
- DetailsViewRow.cs
- AsyncResult.cs
- TemplatePartAttribute.cs
- EnlistmentState.cs
- SettingsContext.cs
- TaskbarItemInfo.cs
- PlainXmlWriter.cs
- XomlCompiler.cs
- XpsSerializerFactory.cs
- Compress.cs
- DragCompletedEventArgs.cs
- ThaiBuddhistCalendar.cs
- InputBuffer.cs
- File.cs
- BitmapFrame.cs
- NextPreviousPagerField.cs
- ResizingMessageFilter.cs
- WindowsTitleBar.cs
- ListViewItemMouseHoverEvent.cs
- TripleDES.cs
- DataBinding.cs
- DrawingContextDrawingContextWalker.cs
- DataControlField.cs
- ProvidePropertyAttribute.cs
- HttpContext.cs
- WebPartConnectionsConnectVerb.cs
- TemplatedAdorner.cs
- SoapReflector.cs
- WebPart.cs
- GradientStop.cs
- PatternMatcher.cs
- EntityTypeEmitter.cs
- CompatibleComparer.cs
- DataGridViewCellMouseEventArgs.cs
- UpdateManifestForBrowserApplication.cs
- FolderBrowserDialogDesigner.cs
- X509CertificateCollection.cs
- CodeTypeDeclaration.cs
- NegotiationTokenAuthenticator.cs
- ITextView.cs
- SourceFilter.cs
- DigestTraceRecordHelper.cs
- DataGridCell.cs
- Repeater.cs
- basenumberconverter.cs
- NativeCppClassAttribute.cs
- DoubleLinkList.cs
- CngProvider.cs
- ConfigXmlCDataSection.cs
- SimpleWorkerRequest.cs
- UDPClient.cs
- TdsParserSessionPool.cs