Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / 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; // 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. //------------------------------------------------------------------------------ //// 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; // 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Composition.cs
- GraphicsPath.cs
- IFlowDocumentViewer.cs
- SqlProfileProvider.cs
- BaseResourcesBuildProvider.cs
- SourceFilter.cs
- MSAANativeProvider.cs
- PriorityBinding.cs
- BinaryCommonClasses.cs
- Size3D.cs
- Opcode.cs
- QueryCoreOp.cs
- NestedContainer.cs
- HttpResponseHeader.cs
- RangeValuePattern.cs
- ColumnHeaderConverter.cs
- objectresult_tresulttype.cs
- WhileDesigner.cs
- EmbeddedMailObject.cs
- PlanCompiler.cs
- safex509handles.cs
- TypeConverter.cs
- FormsAuthenticationTicket.cs
- WebBrowserNavigatingEventHandler.cs
- NavigationService.cs
- QilUnary.cs
- Helpers.cs
- InheritedPropertyChangedEventArgs.cs
- HandlerFactoryWrapper.cs
- QilReference.cs
- ReflectTypeDescriptionProvider.cs
- SHA384.cs
- RawAppCommandInputReport.cs
- BrowserDefinition.cs
- OledbConnectionStringbuilder.cs
- MediaElementAutomationPeer.cs
- base64Transforms.cs
- LoadMessageLogger.cs
- Rect3D.cs
- GuidelineSet.cs
- XmlLinkedNode.cs
- MatrixAnimationUsingPath.cs
- EnvelopeVersion.cs
- HttpStaticObjectsCollectionBase.cs
- DbConnectionOptions.cs
- ListBindingConverter.cs
- Rect.cs
- Point.cs
- IdlingCommunicationPool.cs
- SafeArchiveContext.cs
- ConfigurationSectionCollection.cs
- SequentialOutput.cs
- DataGridItem.cs
- SourceInterpreter.cs
- BasicBrowserDialog.designer.cs
- GeneratedCodeAttribute.cs
- BinaryQueryOperator.cs
- ColumnMapTranslator.cs
- URLIdentityPermission.cs
- InsufficientMemoryException.cs
- IndentTextWriter.cs
- ComMethodElementCollection.cs
- SiteMapSection.cs
- TextServicesHost.cs
- _ContextAwareResult.cs
- PlaceHolder.cs
- MediaElement.cs
- IPGlobalProperties.cs
- UriScheme.cs
- Vertex.cs
- SqlDuplicator.cs
- Rss20ItemFormatter.cs
- StateBag.cs
- Literal.cs
- OletxEnlistment.cs
- SqlFileStream.cs
- LoginUtil.cs
- QuaternionRotation3D.cs
- SizeFConverter.cs
- TemplateKeyConverter.cs
- PropertyConverter.cs
- WmlObjectListAdapter.cs
- LayoutManager.cs
- SimplePropertyEntry.cs
- Win32PrintDialog.cs
- translator.cs
- CodePrimitiveExpression.cs
- MissingMemberException.cs
- TargetInvocationException.cs
- Configuration.cs
- HtmlPageAdapter.cs
- XslTransform.cs
- PropagationProtocolsTracing.cs
- DataControlFieldHeaderCell.cs
- TextRunCacheImp.cs
- UnsafeNativeMethods.cs
- GlobalizationAssembly.cs
- EntityDescriptor.cs
- Pair.cs
- SqlDependencyListener.cs