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
- WebServiceHostFactory.cs
- TreeViewImageIndexConverter.cs
- DataGridViewCellCollection.cs
- ExpandedWrapper.cs
- ListViewCommandEventArgs.cs
- DictionaryTraceRecord.cs
- ComplexBindingPropertiesAttribute.cs
- WrappedIUnknown.cs
- SpellerError.cs
- ObjectPersistData.cs
- ConfigXmlText.cs
- UnSafeCharBuffer.cs
- ScaleTransform3D.cs
- CacheHelper.cs
- MetadataCache.cs
- uribuilder.cs
- ContentOperations.cs
- XmlDataSourceNodeDescriptor.cs
- XslUrlEditor.cs
- controlskin.cs
- Nodes.cs
- EditorPartChrome.cs
- DictionaryEntry.cs
- ProfileBuildProvider.cs
- SystemIPInterfaceProperties.cs
- DbProviderServices.cs
- TextBoxAutoCompleteSourceConverter.cs
- ListViewCancelEventArgs.cs
- AesManaged.cs
- DrawingGroup.cs
- SplitterEvent.cs
- HtmlInputRadioButton.cs
- ConditionedDesigner.cs
- ReflectTypeDescriptionProvider.cs
- AudioException.cs
- CorrelationTokenInvalidatedHandler.cs
- XpsFilter.cs
- ServiceNameElement.cs
- EventLogPermissionAttribute.cs
- Size.cs
- UseLicense.cs
- AppearanceEditorPart.cs
- Tokenizer.cs
- ViewgenContext.cs
- Brush.cs
- FrameworkContextData.cs
- panel.cs
- RegexInterpreter.cs
- HMACMD5.cs
- Internal.cs
- GroupBox.cs
- TreeNodeStyle.cs
- PackUriHelper.cs
- DoubleCollectionConverter.cs
- MasterPage.cs
- WorkflowServiceOperationListItem.cs
- MeasurementDCInfo.cs
- ProfilePropertyNameValidator.cs
- ToolStrip.cs
- RtfControlWordInfo.cs
- TextCollapsingProperties.cs
- ContextMenu.cs
- CacheSection.cs
- MonikerUtility.cs
- Constants.cs
- _RequestCacheProtocol.cs
- SchemaAttDef.cs
- Calendar.cs
- BufferedWebEventProvider.cs
- AssemblyHash.cs
- TrackingLocation.cs
- CatalogPart.cs
- BaseDataListDesigner.cs
- CompositeScriptReferenceEventArgs.cs
- KeyGestureValueSerializer.cs
- DynamicRenderer.cs
- PlainXmlWriter.cs
- TableCell.cs
- COM2IPerPropertyBrowsingHandler.cs
- Soap11ServerProtocol.cs
- FirstQueryOperator.cs
- StaticFileHandler.cs
- BinaryExpression.cs
- CheckBoxAutomationPeer.cs
- ViewManager.cs
- translator.cs
- SecurityKeyUsage.cs
- __Filters.cs
- TextServicesHost.cs
- HttpCachePolicyElement.cs
- RuntimeEnvironment.cs
- SqlDataSourceSelectingEventArgs.cs
- DbConnectionPoolOptions.cs
- _IPv4Address.cs
- KeyFrames.cs
- CompilationUtil.cs
- HttpListenerResponse.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- CustomWebEventKey.cs
- ChangeInterceptorAttribute.cs