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
- DrawingCollection.cs
- objectquery_tresulttype.cs
- InternalTypeHelper.cs
- GridEntryCollection.cs
- InputBindingCollection.cs
- WeakEventManager.cs
- InputEventArgs.cs
- AppAction.cs
- CombinedGeometry.cs
- ContractComponent.cs
- TypedAsyncResult.cs
- XmlSchemaObjectTable.cs
- UnsafeNativeMethods.cs
- ContentElement.cs
- InfoCardRSAPKCS1KeyExchangeFormatter.cs
- ActiveDocumentEvent.cs
- ToolboxItemLoader.cs
- ZoneIdentityPermission.cs
- _DisconnectOverlappedAsyncResult.cs
- EdmComplexTypeAttribute.cs
- XmlSchemaComplexType.cs
- DoWorkEventArgs.cs
- String.cs
- SystemIPGlobalStatistics.cs
- GenericTypeParameterBuilder.cs
- SmtpCommands.cs
- ConfigurationErrorsException.cs
- RulePatternOps.cs
- LocalFileSettingsProvider.cs
- EndpointAddress10.cs
- SerializationInfoEnumerator.cs
- PointAnimationUsingKeyFrames.cs
- SessionPageStatePersister.cs
- XmlCharCheckingReader.cs
- NTAccount.cs
- ExcludePathInfo.cs
- WebHttpBindingCollectionElement.cs
- StandardTransformFactory.cs
- EpmHelper.cs
- SqlReorderer.cs
- DesignTimeParseData.cs
- MetadataArtifactLoaderFile.cs
- XmlLoader.cs
- FontConverter.cs
- CodeGotoStatement.cs
- AQNBuilder.cs
- SqlMultiplexer.cs
- Validator.cs
- SystemIPAddressInformation.cs
- httpstaticobjectscollection.cs
- BooleanProjectedSlot.cs
- recordstatefactory.cs
- Buffer.cs
- EventProvider.cs
- OracleParameterBinding.cs
- EntityWithChangeTrackerStrategy.cs
- CalendarDesigner.cs
- PrintDialogException.cs
- ParseChildrenAsPropertiesAttribute.cs
- StringBlob.cs
- DeferrableContentConverter.cs
- CodeTypeReferenceCollection.cs
- ManagementObjectSearcher.cs
- SimpleMailWebEventProvider.cs
- XmlSchemaCompilationSettings.cs
- CommonXSendMessage.cs
- ReferencedCollectionType.cs
- FileClassifier.cs
- ComponentCache.cs
- BackStopAuthenticationModule.cs
- StringCollection.cs
- TransactionManager.cs
- AttributedMetaModel.cs
- SByteStorage.cs
- QilGeneratorEnv.cs
- TraceLevelStore.cs
- CodeCommentStatementCollection.cs
- FontFamilyValueSerializer.cs
- CurrencyWrapper.cs
- AgileSafeNativeMemoryHandle.cs
- COM2ExtendedBrowsingHandler.cs
- BitmapEffectDrawing.cs
- Context.cs
- PointAnimationUsingPath.cs
- RegisteredExpandoAttribute.cs
- ColumnWidthChangedEvent.cs
- QuaternionRotation3D.cs
- HighlightComponent.cs
- SHA1.cs
- HttpRequestCacheValidator.cs
- SimpleExpression.cs
- columnmapkeybuilder.cs
- TypeUtil.cs
- StylusPlugInCollection.cs
- __ComObject.cs
- ExceptionRoutedEventArgs.cs
- RegexRunnerFactory.cs
- DefinitionUpdate.cs
- coordinatorscratchpad.cs
- AttributeUsageAttribute.cs