Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / CallbackValidator.cs / 1305376 / CallbackValidator.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 { public sealed class CallbackValidator : ConfigurationValidatorBase { Type _type; ValidatorCallback _callback; public CallbackValidator(Type type, ValidatorCallback callback) : this(callback) { if (type == null) { throw new ArgumentNullException("type"); } _type = type; } // Do not check for null type here to handle the callback attribute case internal CallbackValidator(ValidatorCallback callback) { if (callback == null) { throw new ArgumentNullException("callback"); } _type = null; _callback = callback; } public override bool CanValidate(Type type) { return (type == _type || _type == null); } public override void Validate(object value) { _callback(value); } } } // 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 { public sealed class CallbackValidator : ConfigurationValidatorBase { Type _type; ValidatorCallback _callback; public CallbackValidator(Type type, ValidatorCallback callback) : this(callback) { if (type == null) { throw new ArgumentNullException("type"); } _type = type; } // Do not check for null type here to handle the callback attribute case internal CallbackValidator(ValidatorCallback callback) { if (callback == null) { throw new ArgumentNullException("callback"); } _type = null; _callback = callback; } public override bool CanValidate(Type type) { return (type == _type || _type == null); } public override void Validate(object value) { _callback(value); } } } // 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
- RegexCaptureCollection.cs
- FlowDocumentPageViewerAutomationPeer.cs
- UseLicense.cs
- MouseActionConverter.cs
- MissingMemberException.cs
- Perspective.cs
- XmlNamespaceDeclarationsAttribute.cs
- BindableAttribute.cs
- SettingsPropertyValueCollection.cs
- HyperLinkColumn.cs
- ActiveXContainer.cs
- RoutingSection.cs
- SpecularMaterial.cs
- CustomAttributeBuilder.cs
- UITypeEditor.cs
- MasterPageBuildProvider.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- SecurityTokenException.cs
- BigInt.cs
- ClientSettingsStore.cs
- PropertyGridEditorPart.cs
- QuaternionRotation3D.cs
- ObjectViewQueryResultData.cs
- PrintDialog.cs
- GlyphRunDrawing.cs
- SplashScreen.cs
- ProcessModelInfo.cs
- TransportBindingElementImporter.cs
- DesignRelation.cs
- CollectionBuilder.cs
- ContentType.cs
- VerificationException.cs
- TraceUtility.cs
- PageParser.cs
- LayoutSettings.cs
- SchemaImporterExtensionElement.cs
- SessionParameter.cs
- XamlPointCollectionSerializer.cs
- AnnotationResource.cs
- ByteFacetDescriptionElement.cs
- CompilerCollection.cs
- SizeValueSerializer.cs
- Fonts.cs
- RegexRunner.cs
- SqlVisitor.cs
- ThumbAutomationPeer.cs
- ConversionHelper.cs
- SafeViewOfFileHandle.cs
- XmlQueryTypeFactory.cs
- QfeChecker.cs
- ToolStripRendererSwitcher.cs
- XhtmlMobileTextWriter.cs
- SynchronizingStream.cs
- FrameworkRichTextComposition.cs
- MapPathBasedVirtualPathProvider.cs
- MdiWindowListItemConverter.cs
- WebBrowserContainer.cs
- PageSetupDialog.cs
- ChangePassword.cs
- BufferedGraphics.cs
- ListItem.cs
- SystemMulticastIPAddressInformation.cs
- GridViewDeleteEventArgs.cs
- basevalidator.cs
- OleDbParameter.cs
- NamespaceMapping.cs
- HttpAsyncResult.cs
- ResizeGrip.cs
- WorkflowHostingEndpoint.cs
- SQLBinaryStorage.cs
- DataTemplate.cs
- WindowsIdentity.cs
- StickyNote.cs
- FusionWrap.cs
- SafeNativeMethods.cs
- ChtmlPageAdapter.cs
- FixedPageAutomationPeer.cs
- ApplicationDirectoryMembershipCondition.cs
- RepeatBehavior.cs
- ConfigurationFileMap.cs
- EmptyCollection.cs
- GraphicsPath.cs
- DataExpression.cs
- Setter.cs
- JavaScriptString.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- Polyline.cs
- XPathQilFactory.cs
- BeginStoryboard.cs
- RequestCacheManager.cs
- CatalogPartChrome.cs
- MarkedHighlightComponent.cs
- WaveHeader.cs
- COM2ColorConverter.cs
- AuthorizationSection.cs
- SmtpCommands.cs
- Attribute.cs
- TextOnlyOutput.cs
- TraceInternal.cs
- CodeArrayIndexerExpression.cs