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
- ComplexBindingPropertiesAttribute.cs
- SocketAddress.cs
- XmlWriter.cs
- BamlCollectionHolder.cs
- _LoggingObject.cs
- OwnerDrawPropertyBag.cs
- PointIndependentAnimationStorage.cs
- RegexMatchCollection.cs
- ClientUriBehavior.cs
- StatusBarDrawItemEvent.cs
- EncoderExceptionFallback.cs
- DocumentPageView.cs
- XmlSerializerNamespaces.cs
- SQLString.cs
- WizardSideBarListControlItemEventArgs.cs
- CellQuery.cs
- AsyncCompletedEventArgs.cs
- ActivityContext.cs
- OracleParameterCollection.cs
- MouseWheelEventArgs.cs
- Types.cs
- SqlDataAdapter.cs
- Utils.cs
- PersonalizationProviderHelper.cs
- FontConverter.cs
- ComboBox.cs
- WebPartManager.cs
- XmlHierarchicalEnumerable.cs
- JsonClassDataContract.cs
- LayoutEvent.cs
- ManagedWndProcTracker.cs
- WhitespaceRule.cs
- GuidTagList.cs
- TreeViewCancelEvent.cs
- MetadataItemSerializer.cs
- MenuItem.cs
- WebPartAddingEventArgs.cs
- PathSegment.cs
- DataSourceSelectArguments.cs
- DocumentSchemaValidator.cs
- EmptyStringExpandableObjectConverter.cs
- WindowsFormsHost.cs
- ExpressionVisitorHelpers.cs
- RoleGroupCollection.cs
- _ChunkParse.cs
- TrackingServices.cs
- TextEmbeddedObject.cs
- CompModSwitches.cs
- TextDecoration.cs
- ConnectivityStatus.cs
- TiffBitmapEncoder.cs
- HashAlgorithm.cs
- DataRecordInfo.cs
- DateTimeConverter.cs
- Certificate.cs
- CharacterBufferReference.cs
- BitmapEffectOutputConnector.cs
- ConfigurationStrings.cs
- ByteAnimation.cs
- XPathArrayIterator.cs
- ApplicationContext.cs
- ControlAdapter.cs
- FixedSOMGroup.cs
- Int32RectConverter.cs
- SafeBitVector32.cs
- HttpAsyncResult.cs
- DNS.cs
- HttpClientCertificate.cs
- RegisteredHiddenField.cs
- SmtpCommands.cs
- UniqueIdentifierService.cs
- TextMarkerSource.cs
- Errors.cs
- ApplicationFileCodeDomTreeGenerator.cs
- DetailsViewInsertEventArgs.cs
- OdbcConnectionStringbuilder.cs
- autovalidator.cs
- DataBindEngine.cs
- ListItemViewAttribute.cs
- ProfileProvider.cs
- ParserContext.cs
- RadioButton.cs
- SizeChangedEventArgs.cs
- DataFormats.cs
- CharConverter.cs
- Transform3DGroup.cs
- ListViewSelectEventArgs.cs
- BamlLocalizationDictionary.cs
- WebPartCatalogCloseVerb.cs
- TableLayoutCellPaintEventArgs.cs
- DesigntimeLicenseContextSerializer.cs
- PathFigure.cs
- IconHelper.cs
- PeerObject.cs
- ExtensionDataReader.cs
- SafeBitVector32.cs
- SHA384.cs
- SafeProcessHandle.cs
- PropertyGeneratedEventArgs.cs
- ModifierKeysConverter.cs