Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- Animatable.cs
- RouteParser.cs
- Function.cs
- DynamicValidatorEventArgs.cs
- EmptyEnumerator.cs
- TransformerInfo.cs
- Opcode.cs
- ClientConfigPaths.cs
- Rectangle.cs
- SupportingTokenDuplexChannel.cs
- CustomAttributeBuilder.cs
- ReliabilityContractAttribute.cs
- HitTestWithPointDrawingContextWalker.cs
- itemelement.cs
- BitConverter.cs
- TypeCacheManager.cs
- ZipIOModeEnforcingStream.cs
- QilTypeChecker.cs
- PersonalizationStateInfoCollection.cs
- Image.cs
- StringDictionary.cs
- SqlGenericUtil.cs
- DoubleAnimationUsingKeyFrames.cs
- EmptyControlCollection.cs
- ActivityCodeDomReferenceService.cs
- EntryWrittenEventArgs.cs
- backend.cs
- ConnectionProviderAttribute.cs
- LocalizableAttribute.cs
- InternalConfigConfigurationFactory.cs
- TextModifier.cs
- RandomNumberGenerator.cs
- SafeArrayRankMismatchException.cs
- MergeFailedEvent.cs
- HttpCacheParams.cs
- ConstraintCollection.cs
- CheckStoreFileValidityRequest.cs
- PrintDialogException.cs
- ISCIIEncoding.cs
- CssStyleCollection.cs
- EventLogger.cs
- XPathMultyIterator.cs
- DesignerAttribute.cs
- HistoryEventArgs.cs
- ReferentialConstraint.cs
- MaterialCollection.cs
- FreezableDefaultValueFactory.cs
- Keywords.cs
- BamlResourceDeserializer.cs
- MappingMetadataHelper.cs
- Visual3D.cs
- WebEvents.cs
- CompensateDesigner.cs
- DSASignatureFormatter.cs
- MulticastOption.cs
- EditingCommands.cs
- XmlSchemaComplexType.cs
- WebServiceClientProxyGenerator.cs
- AlphabeticalEnumConverter.cs
- DataServiceQueryException.cs
- ZipIOExtraFieldZip64Element.cs
- SafeFileMapViewHandle.cs
- FastEncoderStatics.cs
- WebRequestModuleElement.cs
- ToolBarTray.cs
- DocumentApplicationJournalEntry.cs
- SiteMapNodeItem.cs
- StreamGeometryContext.cs
- CopyNamespacesAction.cs
- ShapingEngine.cs
- ClientReliableChannelBinder.cs
- PropertiesTab.cs
- ExplicitDiscriminatorMap.cs
- LocationInfo.cs
- Control.cs
- Utils.cs
- WebPartConnectionsCancelVerb.cs
- SerializationEventsCache.cs
- StrokeDescriptor.cs
- TreeNodeBinding.cs
- BuildManager.cs
- VirtualizingStackPanel.cs
- CacheMode.cs
- CodeStatementCollection.cs
- SqlDependencyUtils.cs
- MediaScriptCommandRoutedEventArgs.cs
- LinqDataSourceContextData.cs
- EntityKey.cs
- NaturalLanguageHyphenator.cs
- UriSection.cs
- HandleCollector.cs
- CheckBox.cs
- DispatcherExceptionFilterEventArgs.cs
- BindingMemberInfo.cs
- ObjectNotFoundException.cs
- DataServiceResponse.cs
- SelectionItemPattern.cs
- UrlAuthorizationModule.cs
- Matrix.cs
- ToolStripRendererSwitcher.cs