Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Configuration / System / Configuration / SubclassTypeValidator.cs / 1 / SubclassTypeValidator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Collections.Specialized; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; using System.Text.RegularExpressions; namespace System.Configuration { // This class validates that the value is a subclass of a specified type public sealed class SubclassTypeValidator : ConfigurationValidatorBase { private Type _base; public SubclassTypeValidator(Type baseClass) { if (baseClass == null) { throw new ArgumentNullException("baseClass"); } _base = baseClass; } public override bool CanValidate(Type type) { return (type == typeof(Type)); } public override void Validate(object value) { if (value == null) { return; } // Make a check here since value.GetType() returns RuntimeType rather then Type if (!(value is Type)) { ValidatorUtils.HelperParamValidation(value, typeof(Type)); } if (!_base.IsAssignableFrom((Type)value)) { throw new ArgumentException(SR.GetString(SR.Subclass_validator_error, ((Type)value).FullName, _base.FullName)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Collections.Specialized; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; using System.Text.RegularExpressions; namespace System.Configuration { // This class validates that the value is a subclass of a specified type public sealed class SubclassTypeValidator : ConfigurationValidatorBase { private Type _base; public SubclassTypeValidator(Type baseClass) { if (baseClass == null) { throw new ArgumentNullException("baseClass"); } _base = baseClass; } public override bool CanValidate(Type type) { return (type == typeof(Type)); } public override void Validate(object value) { if (value == null) { return; } // Make a check here since value.GetType() returns RuntimeType rather then Type if (!(value is Type)) { ValidatorUtils.HelperParamValidation(value, typeof(Type)); } if (!_base.IsAssignableFrom((Type)value)) { throw new ArgumentException(SR.GetString(SR.Subclass_validator_error, ((Type)value).FullName, _base.FullName)); } } } } // 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
- QueryBranchOp.cs
- XPathItem.cs
- StylusPointPropertyInfoDefaults.cs
- Pair.cs
- CompiledQuery.cs
- OneOfScalarConst.cs
- MetadataArtifactLoaderCompositeResource.cs
- MessageDecoder.cs
- SecurityContext.cs
- HtmlHistory.cs
- ViewService.cs
- OutputCacheSettingsSection.cs
- Function.cs
- JpegBitmapEncoder.cs
- QueueProcessor.cs
- ViewGenerator.cs
- OpenTypeCommon.cs
- Vector3dCollection.cs
- FilterException.cs
- StickyNoteContentControl.cs
- MemberInitExpression.cs
- Pool.cs
- GeneralTransform3D.cs
- BitmapEffect.cs
- QueryInterceptorAttribute.cs
- SystemWebSectionGroup.cs
- AppDomainProtocolHandler.cs
- ValidationRuleCollection.cs
- HttpListenerPrefixCollection.cs
- OutputCacheSettingsSection.cs
- QuaternionRotation3D.cs
- ColumnCollection.cs
- AutoFocusStyle.xaml.cs
- KeyValuePair.cs
- HtmlCommandAdapter.cs
- HybridWebProxyFinder.cs
- ModelFunction.cs
- MissingMethodException.cs
- SequenceRangeCollection.cs
- BooleanStorage.cs
- UpWmlPageAdapter.cs
- Int16KeyFrameCollection.cs
- SecurityContext.cs
- IItemProperties.cs
- ListSortDescriptionCollection.cs
- Focus.cs
- AssemblyUtil.cs
- TemplatedWizardStep.cs
- SqlTransaction.cs
- CheckStoreFileValidityRequest.cs
- AndCondition.cs
- PaperSource.cs
- TypeLoadException.cs
- PtsPage.cs
- LoginName.cs
- TemplateBaseAction.cs
- FormViewRow.cs
- SharedPersonalizationStateInfo.cs
- TraceContextEventArgs.cs
- HtmlTernaryTree.cs
- RadioButtonFlatAdapter.cs
- Color.cs
- HostedHttpTransportManager.cs
- Propagator.JoinPropagator.cs
- TreeNodeBindingDepthConverter.cs
- ErrorProvider.cs
- DataObjectFieldAttribute.cs
- ThreadSafeList.cs
- CodeRegionDirective.cs
- HttpProfileBase.cs
- Typeface.cs
- AuthenticationManager.cs
- ContourSegment.cs
- QueryCacheKey.cs
- Debug.cs
- NumericUpDown.cs
- MappingItemCollection.cs
- ProxyBuilder.cs
- Roles.cs
- ReadOnlyDataSourceView.cs
- UnmanagedHandle.cs
- QuaternionAnimationBase.cs
- ComplexType.cs
- XslUrlEditor.cs
- GradientStop.cs
- DSGeneratorProblem.cs
- SecureStringHasher.cs
- PasswordBoxAutomationPeer.cs
- SqlClientWrapperSmiStreamChars.cs
- CheckedListBox.cs
- FixedSOMElement.cs
- TypeTypeConverter.cs
- AstTree.cs
- VariableModifiersHelper.cs
- LazyLoadBehavior.cs
- OleDbConnectionFactory.cs
- PartBasedPackageProperties.cs
- ValidatorUtils.cs
- ResumeStoryboard.cs
- TiffBitmapDecoder.cs