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
- PolicyException.cs
- XPathMessageFilterElementCollection.cs
- SoapAttributeAttribute.cs
- XmlDataDocument.cs
- ObjectCloneHelper.cs
- DesignOnlyAttribute.cs
- EncoderParameter.cs
- DSGeneratorProblem.cs
- UrlMappingsModule.cs
- WS2007FederationHttpBinding.cs
- AssemblyCache.cs
- SoapSchemaImporter.cs
- CapabilitiesAssignment.cs
- ArgumentOutOfRangeException.cs
- ByteStorage.cs
- PhysicalFontFamily.cs
- Variant.cs
- GenericTextProperties.cs
- ResizeBehavior.cs
- _SecureChannel.cs
- UserValidatedEventArgs.cs
- PositiveTimeSpanValidatorAttribute.cs
- WhitespaceRule.cs
- XMLDiffLoader.cs
- Relationship.cs
- Scene3D.cs
- EnterpriseServicesHelper.cs
- QuotedPrintableStream.cs
- DataFormats.cs
- DisplayInformation.cs
- WindowsListViewGroupHelper.cs
- FilteredXmlReader.cs
- DataSourceSelectArguments.cs
- FixedTextPointer.cs
- GeometryCombineModeValidation.cs
- HttpCachePolicy.cs
- Attributes.cs
- XamlSerializationHelper.cs
- ListView.cs
- ClientReliableChannelBinder.cs
- FontNamesConverter.cs
- SqlFunctionAttribute.cs
- MouseButton.cs
- RichTextBox.cs
- BindingMemberInfo.cs
- Stacktrace.cs
- CqlLexer.cs
- MobilePage.cs
- DataSetMappper.cs
- AuthenticationModuleElementCollection.cs
- TransformerTypeCollection.cs
- ComponentRenameEvent.cs
- ReceiveSecurityHeader.cs
- ClockGroup.cs
- EncoderBestFitFallback.cs
- BuildResult.cs
- SqlResolver.cs
- ValueProviderWrapper.cs
- BitmapEffectGeneralTransform.cs
- ModulesEntry.cs
- XmlBufferReader.cs
- Point4DValueSerializer.cs
- ObjectContext.cs
- Token.cs
- EntityCodeGenerator.cs
- MaskedTextBox.cs
- IdentityModelStringsVersion1.cs
- ToolStripRendererSwitcher.cs
- DataGridHelper.cs
- ConfigViewGenerator.cs
- ModelUtilities.cs
- HttpPostClientProtocol.cs
- Panel.cs
- TimeSpanStorage.cs
- DataGridViewTextBoxEditingControl.cs
- DataBinding.cs
- SystemIcmpV6Statistics.cs
- TypographyProperties.cs
- RectangleHotSpot.cs
- EncryptedKey.cs
- Resources.Designer.cs
- TableItemPattern.cs
- VisualCollection.cs
- MobilePage.cs
- FullTextBreakpoint.cs
- XamlToRtfParser.cs
- StrokeIntersection.cs
- DocumentGridContextMenu.cs
- DirectionalLight.cs
- DateTime.cs
- RemoteWebConfigurationHost.cs
- DesignerAutoFormatStyle.cs
- Stackframe.cs
- dsa.cs
- DragAssistanceManager.cs
- SqlRemoveConstantOrderBy.cs
- XmlLangPropertyAttribute.cs
- InstanceNameConverter.cs
- NavigationProperty.cs
- DependsOnAttribute.cs