Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / RegexStringValidatorAttribute.cs / 1305376 / RegexStringValidatorAttribute.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 { [AttributeUsage(AttributeTargets.Property)] public sealed class RegexStringValidatorAttribute : ConfigurationValidatorAttribute { private string _regex; public RegexStringValidatorAttribute(string regex) { _regex = regex; } public override ConfigurationValidatorBase ValidatorInstance { get { return new RegexStringValidator(_regex); } } public string Regex { get { return _regex; } } } } // 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
- AutomationPattern.cs
- TypeForwardedToAttribute.cs
- PropertyCondition.cs
- HtmlToClrEventProxy.cs
- _ConnectOverlappedAsyncResult.cs
- RowBinding.cs
- UnauthorizedAccessException.cs
- OutputCacheProfile.cs
- FilterQuery.cs
- ClusterRegistryConfigurationProvider.cs
- FontNamesConverter.cs
- RuleSetDialog.cs
- RegionData.cs
- WSTransactionSection.cs
- PageTheme.cs
- ObjectCloneHelper.cs
- DefaultParameterValueAttribute.cs
- DataGridViewMethods.cs
- FormatException.cs
- DynamicScriptObject.cs
- JsonWriterDelegator.cs
- HttpServerUtilityBase.cs
- MonitorWrapper.cs
- BigInt.cs
- ScopedKnownTypes.cs
- Attribute.cs
- InlinedLocationReference.cs
- DescendantQuery.cs
- Imaging.cs
- SymmetricKey.cs
- RegexMatchCollection.cs
- TemplateContainer.cs
- WriteTimeStream.cs
- ISO2022Encoding.cs
- Root.cs
- SHA512.cs
- WebServiceFaultDesigner.cs
- Button.cs
- PassportAuthenticationEventArgs.cs
- SymbolType.cs
- ValidationRuleCollection.cs
- FileRecordSequenceCompletedAsyncResult.cs
- Model3D.cs
- MatrixTransform.cs
- _SslStream.cs
- ConnectionPoolManager.cs
- Helper.cs
- MembershipPasswordException.cs
- CopyAction.cs
- DropTarget.cs
- FacetEnabledSchemaElement.cs
- PeerUnsafeNativeMethods.cs
- AnimationStorage.cs
- DES.cs
- SqlDataReaderSmi.cs
- BorderSidesEditor.cs
- MessageHeaderException.cs
- ConfigurationValidatorBase.cs
- hwndwrapper.cs
- HitTestParameters3D.cs
- BamlRecordWriter.cs
- securitycriticaldataformultiplegetandset.cs
- COM2Properties.cs
- StorageScalarPropertyMapping.cs
- XmlNamespaceManager.cs
- Emitter.cs
- SQLMoneyStorage.cs
- AuthorizationRuleCollection.cs
- ContourSegment.cs
- TemplateXamlTreeBuilder.cs
- ControlValuePropertyAttribute.cs
- Viewport3DVisual.cs
- XmlnsDefinitionAttribute.cs
- EditorPartCollection.cs
- ResourceSetExpression.cs
- DeleteHelper.cs
- DataBindingCollectionConverter.cs
- SmiSettersStream.cs
- CacheAxisQuery.cs
- JoinElimination.cs
- HTMLTextWriter.cs
- SatelliteContractVersionAttribute.cs
- TreeNodeStyle.cs
- EnumMemberAttribute.cs
- DocumentEventArgs.cs
- StringConverter.cs
- Header.cs
- RankException.cs
- XmlComment.cs
- TextRunCacheImp.cs
- BaseParaClient.cs
- FileDialogCustomPlace.cs
- UrlMapping.cs
- SplitterDesigner.cs
- XmlImplementation.cs
- PixelShader.cs
- GZipObjectSerializer.cs
- oledbconnectionstring.cs
- HopperCache.cs
- ILGen.cs