Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / ConfigurationElementProperty.cs / 1305376 / ConfigurationElementProperty.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Security.Permissions; using System.Xml; using System.Globalization; using System.ComponentModel; using System.Security; using System.Text; namespace System.Configuration { // Although in Whidbey this class contain just one property, but we still do this this way, // instead of exposing a Validator property in ConfigurationElement, because if we need // another property in the future we'll expand this ElementProperty class rather than adding a // new overridable on ConfigurationElement public sealed class ConfigurationElementProperty { private ConfigurationValidatorBase _validator; public ConfigurationElementProperty(ConfigurationValidatorBase validator) { if (validator == null) { throw new ArgumentNullException("validator"); } _validator = validator; } public ConfigurationValidatorBase Validator { get { return _validator; } } } } // 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
- OdbcCommandBuilder.cs
- GifBitmapDecoder.cs
- hwndwrapper.cs
- SHA384.cs
- VisualStyleInformation.cs
- ExcCanonicalXml.cs
- TypedRowHandler.cs
- NameObjectCollectionBase.cs
- TreeViewHitTestInfo.cs
- PixelShader.cs
- AuthStoreRoleProvider.cs
- MimeObjectFactory.cs
- Font.cs
- QueryBranchOp.cs
- SkewTransform.cs
- StrongNameMembershipCondition.cs
- loginstatus.cs
- EditBehavior.cs
- RawKeyboardInputReport.cs
- IdentityReference.cs
- ShapingEngine.cs
- StandardCommands.cs
- CombinedGeometry.cs
- ReachSerializerAsync.cs
- ExecutorLocksHeldException.cs
- XamlGridLengthSerializer.cs
- ModelUtilities.cs
- ElementProxy.cs
- InputDevice.cs
- ECDsa.cs
- Missing.cs
- CommonXSendMessage.cs
- ReferentialConstraint.cs
- OdbcInfoMessageEvent.cs
- ProcessModule.cs
- Transform.cs
- MiniModule.cs
- AttributeEmitter.cs
- StringWriter.cs
- EventHandlersStore.cs
- SendActivity.cs
- FastEncoder.cs
- RoutedUICommand.cs
- RootBuilder.cs
- GestureRecognitionResult.cs
- ExpressionTextBox.xaml.cs
- StrokeCollectionConverter.cs
- BulletedList.cs
- WindowsListViewItemStartMenu.cs
- ContextQuery.cs
- ICspAsymmetricAlgorithm.cs
- ModelService.cs
- TraceContextRecord.cs
- EntityDataSourceValidationException.cs
- SetterBase.cs
- ResourceReader.cs
- ScriptRegistrationManager.cs
- CollectionChangeEventArgs.cs
- ChangeBlockUndoRecord.cs
- RelOps.cs
- MessageQueue.cs
- ToolStripOverflow.cs
- HtmlFormAdapter.cs
- DataSourceCache.cs
- PerformanceCounterCategory.cs
- AnimationLayer.cs
- TextFormatter.cs
- OutOfProcStateClientManager.cs
- PropertyValueChangedEvent.cs
- Vector3D.cs
- SafeBitVector32.cs
- Assert.cs
- FileSystemEventArgs.cs
- PropertyValueChangedEvent.cs
- XPathExpr.cs
- WindowsUpDown.cs
- OdbcReferenceCollection.cs
- Internal.cs
- TaiwanLunisolarCalendar.cs
- PageAsyncTask.cs
- RefreshPropertiesAttribute.cs
- PhysicalOps.cs
- PingOptions.cs
- ViewStateModeByIdAttribute.cs
- UIntPtr.cs
- DescriptionCreator.cs
- Oid.cs
- InstanceDataCollection.cs
- SamlAuthenticationClaimResource.cs
- QilChoice.cs
- GradientStopCollection.cs
- MbpInfo.cs
- Vertex.cs
- StreamGeometry.cs
- Utility.cs
- CodeTypeDeclaration.cs
- ADConnectionHelper.cs
- ComboBoxRenderer.cs
- WebPart.cs
- DataGridViewCellErrorTextNeededEventArgs.cs