Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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;
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// 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;
}
}
}
}
// 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
- DbProviderServices.cs
- ProfileElement.cs
- SafeArrayRankMismatchException.cs
- AlphabeticalEnumConverter.cs
- XXXInfos.cs
- SmiEventSink_DeferedProcessing.cs
- Int32Rect.cs
- ControlCachePolicy.cs
- SmtpReplyReaderFactory.cs
- SystemResourceKey.cs
- SelectionWordBreaker.cs
- TextTreePropertyUndoUnit.cs
- SoapIncludeAttribute.cs
- RouteUrlExpressionBuilder.cs
- DataGridViewTextBoxCell.cs
- WSFederationHttpSecurityElement.cs
- WebConfigurationHost.cs
- IndependentAnimationStorage.cs
- MouseGestureConverter.cs
- DispatcherEventArgs.cs
- DataGridViewImageColumn.cs
- FileResponseElement.cs
- TypeHelpers.cs
- ServiceContractListItem.cs
- ByteRangeDownloader.cs
- ScriptBehaviorDescriptor.cs
- StyleBamlRecordReader.cs
- SystemNetworkInterface.cs
- EndPoint.cs
- SchemaType.cs
- TextEditorDragDrop.cs
- InternalCache.cs
- SecurityDocument.cs
- DataView.cs
- ProxyWebPartManager.cs
- CodeDOMUtility.cs
- ComponentResourceKey.cs
- CqlQuery.cs
- SkipStoryboardToFill.cs
- Shape.cs
- SendSecurityHeaderElement.cs
- BuildManager.cs
- DBDataPermission.cs
- DrawingCollection.cs
- DrawingContextWalker.cs
- CompilerGeneratedAttribute.cs
- Internal.cs
- IPEndPoint.cs
- XpsImageSerializationService.cs
- SystemColorTracker.cs
- StoreContentChangedEventArgs.cs
- XmlSchemaImport.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- JsonSerializer.cs
- HtmlInputPassword.cs
- WindowsIdentity.cs
- EastAsianLunisolarCalendar.cs
- ReferencedAssembly.cs
- StandardToolWindows.cs
- DataListItem.cs
- CultureInfoConverter.cs
- ExpressionPrinter.cs
- FilePrompt.cs
- DockEditor.cs
- WinFormsSecurity.cs
- SystemInfo.cs
- SimpleRecyclingCache.cs
- Compiler.cs
- PlatformNotSupportedException.cs
- WizardStepCollectionEditor.cs
- EllipseGeometry.cs
- ExpandCollapsePattern.cs
- Column.cs
- Claim.cs
- LoginName.cs
- IndexedGlyphRun.cs
- TextSegment.cs
- DataBinder.cs
- ServerTooBusyException.cs
- WinCategoryAttribute.cs
- DataSet.cs
- SafeThemeHandle.cs
- ImportedNamespaceContextItem.cs
- FormsAuthenticationConfiguration.cs
- InputScopeManager.cs
- SafeFileMapViewHandle.cs
- DataTableNewRowEvent.cs
- ProfileWorkflowElement.cs
- EntityKeyElement.cs
- LeaseManager.cs
- EntityParameter.cs
- DateTimeFormatInfo.cs
- XmlAttributeProperties.cs
- GroupByExpressionRewriter.cs
- TextCollapsingProperties.cs
- PrintDocument.cs
- SchemaImporterExtension.cs
- CustomErrorsSection.cs
- TypeListConverter.cs
- RequestReplyCorrelator.cs