Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Configuration / CheckPair.cs / 1 / CheckPair.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Configuration { using System; using System.Collections; using System.Collections.Specialized; using System.Configuration; using System.Text; using System.Text.RegularExpressions; using System.Web.Compilation; using System.Web.UI; using System.Web.Util; using System.Xml; using System.Globalization; internal class CheckPair { private string _header; private string _match; private bool _nonMatch; internal CheckPair(string header, string match, bool nonMatch) { _header = header; _match = match; _nonMatch = nonMatch; // Regex regex = new Regex(match); } internal CheckPair(string header, string match) { _header = header; _match = match; _nonMatch = false; Regex regex = new Regex(match); } public string Header { get { return _header; } } public string MatchString { get { return _match; } } public bool NonMatch { get { return _nonMatch; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TiffBitmapEncoder.cs
- XsdCachingReader.cs
- RemoteEndpointMessageProperty.cs
- remotingproxy.cs
- ComponentCollection.cs
- BitmapDecoder.cs
- XmlSigningNodeWriter.cs
- Int64Animation.cs
- InfoCardClaim.cs
- TypeReference.cs
- TargetInvocationException.cs
- FamilyTypefaceCollection.cs
- InternalConfigConfigurationFactory.cs
- CodeArgumentReferenceExpression.cs
- Token.cs
- PerformanceCountersBase.cs
- UTF32Encoding.cs
- UnsafeNativeMethods.cs
- AppModelKnownContentFactory.cs
- MruCache.cs
- MediaCommands.cs
- WebPartConnectVerb.cs
- StateDesignerConnector.cs
- AuthenticatedStream.cs
- CryptoApi.cs
- DllNotFoundException.cs
- AccessDataSourceWizardForm.cs
- MetadataCacheItem.cs
- XslAstAnalyzer.cs
- QuaternionAnimation.cs
- HttpSysSettings.cs
- CodeEntryPointMethod.cs
- MeshGeometry3D.cs
- SiteMapNodeItem.cs
- AVElementHelper.cs
- Brush.cs
- TimersDescriptionAttribute.cs
- StructuredProperty.cs
- DesignerActionUIStateChangeEventArgs.cs
- ImportCatalogPart.cs
- ColorContext.cs
- PagesChangedEventArgs.cs
- DllNotFoundException.cs
- XmlSchemaCollection.cs
- LineSegment.cs
- EntitySqlException.cs
- GridViewCommandEventArgs.cs
- AsyncOperationManager.cs
- DbConnectionPoolCounters.cs
- Table.cs
- ArgumentDesigner.xaml.cs
- ToolStripSeparatorRenderEventArgs.cs
- FormatSettings.cs
- HuffCodec.cs
- HttpListenerRequest.cs
- SqlDataSourceConnectionPanel.cs
- Int32AnimationUsingKeyFrames.cs
- X509SecurityToken.cs
- LightweightCodeGenerator.cs
- FileSecurity.cs
- FrameworkElementFactory.cs
- ColumnTypeConverter.cs
- SoapMessage.cs
- DurationConverter.cs
- DoubleStorage.cs
- Page.cs
- ProcessHostServerConfig.cs
- Pipe.cs
- SignatureConfirmations.cs
- WeakEventManager.cs
- Button.cs
- XmlSchemaAttribute.cs
- __FastResourceComparer.cs
- DelayedRegex.cs
- XmlArrayItemAttribute.cs
- StringExpressionSet.cs
- EntityDataSourceReferenceGroup.cs
- ProviderConnectionPoint.cs
- StreamUpdate.cs
- WebPartZoneCollection.cs
- FormatterServices.cs
- ZipIOLocalFileDataDescriptor.cs
- SweepDirectionValidation.cs
- HebrewCalendar.cs
- XmlSchemaNotation.cs
- XsltException.cs
- QuaternionIndependentAnimationStorage.cs
- LambdaCompiler.Lambda.cs
- OdbcConnectionOpen.cs
- SoapAttributeAttribute.cs
- CompiledQueryCacheEntry.cs
- FontTypeConverter.cs
- SqlProfileProvider.cs
- BinaryReader.cs
- TargetException.cs
- RuleRefElement.cs
- CellConstant.cs
- MappedMetaModel.cs
- CrossSiteScriptingValidation.cs
- IFlowDocumentViewer.cs