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
- ServerType.cs
- EventProvider.cs
- DefaultAuthorizationContext.cs
- TypeLoader.cs
- CompilationSection.cs
- DataGridViewColumnHeaderCell.cs
- SortedDictionary.cs
- CompiledQueryCacheKey.cs
- PieceDirectory.cs
- HelpEvent.cs
- NTAccount.cs
- SingleKeyFrameCollection.cs
- DataMemberAttribute.cs
- FtpWebRequest.cs
- FieldInfo.cs
- HttpCachePolicyElement.cs
- ProfileGroupSettings.cs
- RegexMatchCollection.cs
- CodeIdentifier.cs
- ArraySet.cs
- ColorConverter.cs
- WsdlBuildProvider.cs
- NotificationContext.cs
- CommandField.cs
- FixedSOMContainer.cs
- ScrollEvent.cs
- SizeAnimationClockResource.cs
- PropertyValueUIItem.cs
- BasicExpressionVisitor.cs
- LinqExpressionNormalizer.cs
- NodeInfo.cs
- ZoneLinkButton.cs
- BinaryObjectReader.cs
- ManagedIStream.cs
- MetadataArtifactLoaderCompositeResource.cs
- Number.cs
- TypeDelegator.cs
- FrameworkRichTextComposition.cs
- BlurBitmapEffect.cs
- UncommonField.cs
- SqlMetaData.cs
- DesignerProperties.cs
- WindowsIdentity.cs
- IndicFontClient.cs
- ReferenceService.cs
- InvokeMethodDesigner.xaml.cs
- XmlSchemaComplexContent.cs
- InnerItemCollectionView.cs
- AutomationEvent.cs
- ButtonPopupAdapter.cs
- DataListItemCollection.cs
- WorkflowServiceBuildProvider.cs
- CollectionViewGroup.cs
- SevenBitStream.cs
- ConvertEvent.cs
- XmlSchemaSimpleContent.cs
- SmiEventSink.cs
- CodeTypeOfExpression.cs
- SingleAnimationUsingKeyFrames.cs
- DbProviderManifest.cs
- RegisteredDisposeScript.cs
- HwndHostAutomationPeer.cs
- CodeExpressionStatement.cs
- Monitor.cs
- HMACRIPEMD160.cs
- UpdatePanelTriggerCollection.cs
- ErrorWebPart.cs
- WindowsStatic.cs
- ChildTable.cs
- InternalControlCollection.cs
- ProgramPublisher.cs
- DataGridDetailsPresenter.cs
- BStrWrapper.cs
- KnownBoxes.cs
- coordinator.cs
- LongValidatorAttribute.cs
- ObjectReferenceStack.cs
- DataGridViewElement.cs
- MediaElementAutomationPeer.cs
- ViewgenContext.cs
- SpeakCompletedEventArgs.cs
- StateRuntime.cs
- FontUnitConverter.cs
- GlyphRun.cs
- Win32.cs
- RoutedEventConverter.cs
- IIS7WorkerRequest.cs
- assemblycache.cs
- DataContext.cs
- DesignConnectionCollection.cs
- tibetanshape.cs
- StylusDevice.cs
- MessageSecurityVersionConverter.cs
- LoginView.cs
- MappingException.cs
- DefaultProxySection.cs
- Odbc32.cs
- SchemaElementLookUpTableEnumerator.cs
- HandleExceptionArgs.cs
- XsltContext.cs