Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Configuration / CheckPair.cs / 1305376 / 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
- OperatingSystem.cs
- ListViewEditEventArgs.cs
- EntityProxyTypeInfo.cs
- ScriptingScriptResourceHandlerSection.cs
- PhysicalFontFamily.cs
- XmlSchemaProviderAttribute.cs
- ServiceProviders.cs
- SchemaElementLookUpTableEnumerator.cs
- DataGridViewRowCollection.cs
- DataServiceQueryOfT.cs
- CachedCompositeFamily.cs
- PathGeometry.cs
- AlgoModule.cs
- GlyphRunDrawing.cs
- SerialPort.cs
- DataGridViewColumn.cs
- ConditionalAttribute.cs
- FlowNode.cs
- StaticTextPointer.cs
- SafeEventLogWriteHandle.cs
- LocalIdKeyIdentifierClause.cs
- ConvertersCollection.cs
- HtmlFormWrapper.cs
- SymbolTable.cs
- ReachIDocumentPaginatorSerializer.cs
- TypeReference.cs
- DynamicPropertyReader.cs
- HtmlInputReset.cs
- StreamWriter.cs
- infer.cs
- DataGridColumnCollection.cs
- XmlElementAttributes.cs
- Message.cs
- cache.cs
- SponsorHelper.cs
- ExpressionBindingCollection.cs
- UIElementCollection.cs
- ContentFilePart.cs
- BrowserTree.cs
- SqlCommand.cs
- DefaultHttpHandler.cs
- Mouse.cs
- Separator.cs
- FormView.cs
- ChildTable.cs
- QualifierSet.cs
- PageAdapter.cs
- FormatControl.cs
- EntityClientCacheEntry.cs
- TemplateInstanceAttribute.cs
- _NtlmClient.cs
- XmlValidatingReader.cs
- ToolStripScrollButton.cs
- ObjectComplexPropertyMapping.cs
- XPathNodeInfoAtom.cs
- IriParsingElement.cs
- SoapFormatterSinks.cs
- ControlBuilder.cs
- SafePointer.cs
- HashMembershipCondition.cs
- DispatcherFrame.cs
- SizeAnimation.cs
- ProfileParameter.cs
- ClientUtils.cs
- TransformerTypeCollection.cs
- HostSecurityManager.cs
- DiscriminatorMap.cs
- UIElementIsland.cs
- ColumnWidthChangedEvent.cs
- MatrixTransform3D.cs
- WebServiceEndpoint.cs
- FormParameter.cs
- HtmlInputHidden.cs
- DesignSurfaceServiceContainer.cs
- Zone.cs
- TimeoutException.cs
- CodePrimitiveExpression.cs
- CachedFontFamily.cs
- LinkUtilities.cs
- DataGridCellItemAutomationPeer.cs
- DataSourceConverter.cs
- BufferedGraphics.cs
- SessionStateContainer.cs
- SoapEnvelopeProcessingElement.cs
- AppDomainUnloadedException.cs
- FilteredXmlReader.cs
- BitmapEffectInput.cs
- UpdatableGenericsFeature.cs
- safelink.cs
- PermissionListSet.cs
- DataGridColumnCollection.cs
- DataQuery.cs
- XmlExpressionDumper.cs
- TypeHelper.cs
- Type.cs
- Vector3DIndependentAnimationStorage.cs
- XmlSchemaInferenceException.cs
- RowUpdatedEventArgs.cs
- Pen.cs
- ILGenerator.cs