Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ConstantCheck.cs
- FreezableDefaultValueFactory.cs
- ChannelBinding.cs
- ThumbButtonInfo.cs
- ColumnCollection.cs
- EventLog.cs
- documentsequencetextcontainer.cs
- ToolStripDropDownClosingEventArgs.cs
- Quaternion.cs
- MemberHolder.cs
- DataObjectPastingEventArgs.cs
- TextEditorMouse.cs
- MetafileHeaderWmf.cs
- CompiledRegexRunner.cs
- EnumMember.cs
- BitmapEffectCollection.cs
- DeferredTextReference.cs
- AlphabeticalEnumConverter.cs
- BamlLocalizableResourceKey.cs
- RelatedEnd.cs
- itemelement.cs
- XamlFxTrace.cs
- TraceSwitch.cs
- SelectionEditingBehavior.cs
- BaseParaClient.cs
- SeekableReadStream.cs
- DrawListViewItemEventArgs.cs
- EntityTransaction.cs
- GetChildSubtree.cs
- compensatingcollection.cs
- LinkedList.cs
- Run.cs
- CodeNamespaceImport.cs
- IPEndPoint.cs
- OracleLob.cs
- Environment.cs
- TableRowCollection.cs
- PolicyLevel.cs
- Model3DGroup.cs
- OperatorExpressions.cs
- ElementUtil.cs
- sqlnorm.cs
- PathSegmentCollection.cs
- DataGridBeginningEditEventArgs.cs
- Rect3D.cs
- ImageCollectionEditor.cs
- BlobPersonalizationState.cs
- UnmanagedMemoryStream.cs
- GradientStop.cs
- ObjectRef.cs
- FontFamilyValueSerializer.cs
- BitArray.cs
- BooleanFunctions.cs
- AnnotationStore.cs
- NavigatorInvalidBodyAccessException.cs
- NonBatchDirectoryCompiler.cs
- AccessedThroughPropertyAttribute.cs
- HandlerBase.cs
- InputMethodStateChangeEventArgs.cs
- ObjRef.cs
- TraceHandler.cs
- OleDbErrorCollection.cs
- ObfuscationAttribute.cs
- Identifier.cs
- Tablet.cs
- CacheChildrenQuery.cs
- BamlRecordReader.cs
- ContainerAction.cs
- CodeIndexerExpression.cs
- Style.cs
- DrawingContextWalker.cs
- StatusBarItemAutomationPeer.cs
- PropertyGridCommands.cs
- OutOfProcStateClientManager.cs
- SafeCoTaskMem.cs
- NonPrimarySelectionGlyph.cs
- WindowsSpinner.cs
- ErrorItem.cs
- ViewStateException.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- CommandBindingCollection.cs
- SafeBitVector32.cs
- DocumentOrderComparer.cs
- BamlTreeUpdater.cs
- StylusEditingBehavior.cs
- EdmToObjectNamespaceMap.cs
- CustomAttributeBuilder.cs
- HtmlSelect.cs
- RemotingConfiguration.cs
- TextEncodedRawTextWriter.cs
- AccessDataSourceView.cs
- SecurityIdentifierElementCollection.cs
- HtmlCalendarAdapter.cs
- SettingsProperty.cs
- ScrollEventArgs.cs
- AsymmetricSignatureDeformatter.cs
- ExtractedStateEntry.cs
- DirectoryInfo.cs
- ComMethodElementCollection.cs
- SchemaCollectionCompiler.cs