Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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;
//check validity of match string at parse time
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;
}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SubpageParagraph.cs
- NamedPipeHostedTransportConfiguration.cs
- SHA384.cs
- QueryExtender.cs
- DataSourceConverter.cs
- _IPv6Address.cs
- TimeSpanStorage.cs
- DataGridParentRows.cs
- AdRotator.cs
- SchemaAttDef.cs
- PtsHelper.cs
- DeploymentSection.cs
- _emptywebproxy.cs
- RemotingException.cs
- EventKeyword.cs
- AsymmetricKeyExchangeFormatter.cs
- Base64Encoder.cs
- CellParaClient.cs
- DocumentCollection.cs
- TextLineResult.cs
- SqlDataSourceRefreshSchemaForm.cs
- SqlConnectionPoolGroupProviderInfo.cs
- RegexTree.cs
- HttpCachePolicyElement.cs
- SqlConnectionPoolGroupProviderInfo.cs
- MapPathBasedVirtualPathProvider.cs
- Timer.cs
- EventHandlerList.cs
- PieceDirectory.cs
- RegistryConfigurationProvider.cs
- StateMachineDesignerPaint.cs
- Focus.cs
- RadioButtonStandardAdapter.cs
- CustomLineCap.cs
- SkinBuilder.cs
- SerializationObjectManager.cs
- ExtendedPropertyDescriptor.cs
- DocumentsTrace.cs
- HandlerMappingMemo.cs
- connectionpool.cs
- ConstantCheck.cs
- UpdatePanel.cs
- InProcStateClientManager.cs
- UrlMapping.cs
- DesignerDataColumn.cs
- QuaternionAnimation.cs
- TagPrefixCollection.cs
- PipeSecurity.cs
- DataGridViewCellParsingEventArgs.cs
- LayoutEngine.cs
- RefType.cs
- RecordsAffectedEventArgs.cs
- UnSafeCharBuffer.cs
- StateRuntime.cs
- PropertyRecord.cs
- SqlXmlStorage.cs
- CapabilitiesState.cs
- BitmapEffectvisualstate.cs
- PagesSection.cs
- BindingManagerDataErrorEventArgs.cs
- ConfigXmlWhitespace.cs
- OleAutBinder.cs
- EventDescriptor.cs
- BypassElement.cs
- COMException.cs
- SQLGuidStorage.cs
- RuntimeConfigurationRecord.cs
- TreeNodeCollection.cs
- SystemException.cs
- PermissionSetTriple.cs
- ByteAnimationUsingKeyFrames.cs
- XmlSerializerVersionAttribute.cs
- TypeExtensionConverter.cs
- WindowProviderWrapper.cs
- SQLChars.cs
- AppSettingsReader.cs
- QueryParameter.cs
- PeerContact.cs
- XmlComplianceUtil.cs
- MemberNameValidator.cs
- DiscoveryClientProtocol.cs
- ipaddressinformationcollection.cs
- XhtmlBasicPanelAdapter.cs
- TdsParameterSetter.cs
- SymbolType.cs
- DropDownList.cs
- SecurityPolicySection.cs
- StyleSheetComponentEditor.cs
- SQLBytesStorage.cs
- CustomValidator.cs
- BaseParaClient.cs
- EventSourceCreationData.cs
- altserialization.cs
- MemoryStream.cs
- grammarelement.cs
- Pkcs7Recipient.cs
- UnionCodeGroup.cs
- SchemaNamespaceManager.cs
- XmlDocumentFragment.cs
- AdornerDecorator.cs