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
- SecurityKeyUsage.cs
- InvalidCommandTreeException.cs
- WorkflowHostingResponseContext.cs
- SvcMapFileSerializer.cs
- CodeDirectoryCompiler.cs
- TrimSurroundingWhitespaceAttribute.cs
- AudioBase.cs
- CodeDOMProvider.cs
- TypeNameConverter.cs
- METAHEADER.cs
- CompiledQueryCacheEntry.cs
- FontConverter.cs
- ContextMarshalException.cs
- _AuthenticationState.cs
- ViewService.cs
- CodeIndexerExpression.cs
- SessionState.cs
- HttpListenerResponse.cs
- CacheDependency.cs
- EqualityComparer.cs
- PassportAuthenticationModule.cs
- SequentialWorkflowHeaderFooter.cs
- StringComparer.cs
- SQLMembershipProvider.cs
- MenuItemStyleCollection.cs
- Size3D.cs
- IndependentlyAnimatedPropertyMetadata.cs
- BindableTemplateBuilder.cs
- ComponentSerializationService.cs
- OdbcStatementHandle.cs
- BinaryParser.cs
- StringPropertyBuilder.cs
- SQLMembershipProvider.cs
- XNodeValidator.cs
- SByteStorage.cs
- KeyValueInternalCollection.cs
- TextAutomationPeer.cs
- RelationshipType.cs
- FileLoadException.cs
- ObjectDataSourceView.cs
- DoubleAnimation.cs
- InheritedPropertyChangedEventArgs.cs
- SamlAction.cs
- SchemaDeclBase.cs
- RequestQueryProcessor.cs
- StrokeNodeOperations2.cs
- ObjectDataProvider.cs
- XmlSchemaAnyAttribute.cs
- IsolatedStorageFileStream.cs
- GridViewCellAutomationPeer.cs
- OracleBinary.cs
- ResXFileRef.cs
- ExpandCollapsePattern.cs
- ServiceDesigner.cs
- CopyAttributesAction.cs
- DoubleKeyFrameCollection.cs
- MobileCategoryAttribute.cs
- StrokeRenderer.cs
- CultureTableRecord.cs
- XsdBuildProvider.cs
- ImageBrush.cs
- BitmapFrame.cs
- SrgsRulesCollection.cs
- PeerToPeerException.cs
- DecryptRequest.cs
- shaper.cs
- ISAPIRuntime.cs
- HandlerMappingMemo.cs
- DrawingAttributes.cs
- SqlConnection.cs
- ManualResetEvent.cs
- WebConfigurationFileMap.cs
- CurrentTimeZone.cs
- FileChangesMonitor.cs
- TypeConverterValueSerializer.cs
- ChangePassword.cs
- XmlDictionaryReader.cs
- SmiEventSink_DeferedProcessing.cs
- XmlSchemaSimpleTypeUnion.cs
- Vars.cs
- EventSinkHelperWriter.cs
- QilList.cs
- DropSource.cs
- DataObjectMethodAttribute.cs
- Grid.cs
- HtmlInputCheckBox.cs
- PageAdapter.cs
- EventArgs.cs
- ContainerVisual.cs
- DefaultObjectMappingItemCollection.cs
- ResXFileRef.cs
- PersonalizationState.cs
- TextFindEngine.cs
- QuaternionRotation3D.cs
- AvTraceFormat.cs
- LayoutTableCell.cs
- ClientBuildManagerCallback.cs
- ErrorRuntimeConfig.cs
- GridToolTip.cs
- ProcessHostFactoryHelper.cs