Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- FormViewModeEventArgs.cs
- PropertyRecord.cs
- ElementHost.cs
- DbParameterHelper.cs
- TextRunProperties.cs
- LocalizableAttribute.cs
- StylusPlugInCollection.cs
- Root.cs
- SQLResource.cs
- SizeFConverter.cs
- DummyDataSource.cs
- ColorConverter.cs
- StringToken.cs
- AspNetHostingPermission.cs
- ConfigurationSectionGroup.cs
- ClientRoleProvider.cs
- DebugView.cs
- PersonalizationProvider.cs
- XmlObjectSerializerWriteContextComplex.cs
- LockRecursionException.cs
- ProcessHostFactoryHelper.cs
- GcSettings.cs
- StringFreezingAttribute.cs
- RequiredAttributeAttribute.cs
- Transactions.cs
- MailAddress.cs
- CombinedGeometry.cs
- PhonemeConverter.cs
- KnownColorTable.cs
- TemplateXamlParser.cs
- OpCellTreeNode.cs
- SmtpReplyReader.cs
- ClientEventManager.cs
- DataGridTemplateColumn.cs
- SqlFormatter.cs
- HtmlImage.cs
- mansign.cs
- SizeLimitedCache.cs
- ImageConverter.cs
- TargetPerspective.cs
- State.cs
- DesignTableCollection.cs
- RecipientInfo.cs
- DataBindingCollectionEditor.cs
- SoapElementAttribute.cs
- Roles.cs
- ResolvedKeyFrameEntry.cs
- Tracer.cs
- ClientRuntimeConfig.cs
- StorageMappingItemCollection.cs
- OrderingInfo.cs
- AsymmetricAlgorithm.cs
- Metafile.cs
- RequestCachePolicyConverter.cs
- StructuredProperty.cs
- DPCustomTypeDescriptor.cs
- CompiledIdentityConstraint.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- CategoryGridEntry.cs
- DataGridViewCellLinkedList.cs
- DefaultMergeHelper.cs
- TemplatedMailWebEventProvider.cs
- EncodedStreamFactory.cs
- SqlConnection.cs
- dtdvalidator.cs
- ExportOptions.cs
- TreeView.cs
- TextServicesHost.cs
- ReflectionTypeLoadException.cs
- SegmentInfo.cs
- Decimal.cs
- SymmetricCryptoHandle.cs
- Registry.cs
- ZipPackage.cs
- Qualifier.cs
- WindowsButton.cs
- DataControlCommands.cs
- Common.cs
- FileUpload.cs
- ContentType.cs
- PagerSettings.cs
- PropertyGrid.cs
- ReliableChannelListener.cs
- XmlSchemaSimpleContent.cs
- StandardToolWindows.cs
- LinearQuaternionKeyFrame.cs
- ContextMenu.cs
- EmptyCollection.cs
- HealthMonitoringSectionHelper.cs
- ObjectDataSourceStatusEventArgs.cs
- HMACSHA512.cs
- LongValidator.cs
- NoneExcludedImageIndexConverter.cs
- ExpressionList.cs
- HtmlElementEventArgs.cs
- XmlSchemaComplexContentExtension.cs
- PeerNearMe.cs
- HtmlPanelAdapter.cs
- UICuesEvent.cs
- FileLoadException.cs