Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- OperationContractAttribute.cs
- MailSettingsSection.cs
- PerformanceCounterTraceRecord.cs
- MetaDataInfo.cs
- DocumentApplicationDocumentViewer.cs
- DataList.cs
- NativeObjectSecurity.cs
- XmlAttribute.cs
- Baml6Assembly.cs
- ErrorStyle.cs
- ContentElement.cs
- PointIndependentAnimationStorage.cs
- Renderer.cs
- DataRelation.cs
- keycontainerpermission.cs
- BinaryUtilClasses.cs
- OdbcConnectionHandle.cs
- ObjRef.cs
- DaylightTime.cs
- BooleanAnimationUsingKeyFrames.cs
- wmiprovider.cs
- TextRenderer.cs
- Parameter.cs
- ApplyHostConfigurationBehavior.cs
- ToolStripHighContrastRenderer.cs
- ToolStripDropDownItem.cs
- Selection.cs
- XmlNullResolver.cs
- ExtendedProtectionPolicyElement.cs
- LinkGrep.cs
- SessionParameter.cs
- DataGridAutomationPeer.cs
- EdmFunctions.cs
- RedistVersionInfo.cs
- BrowserCapabilitiesCodeGenerator.cs
- SessionStateSection.cs
- DatatypeImplementation.cs
- WSTrustFeb2005.cs
- RuleConditionDialog.cs
- WebBrowser.cs
- DataSourceHelper.cs
- _SslStream.cs
- CompilerError.cs
- EmptyQuery.cs
- ButtonBase.cs
- HttpDebugHandler.cs
- TableLayoutPanelCellPosition.cs
- OracleRowUpdatedEventArgs.cs
- EventSinkHelperWriter.cs
- TextSelection.cs
- TreeViewItemAutomationPeer.cs
- ScopelessEnumAttribute.cs
- SByteConverter.cs
- PrintDialog.cs
- _NetRes.cs
- ContextMarshalException.cs
- FocusManager.cs
- SchemaElementDecl.cs
- ParenthesizePropertyNameAttribute.cs
- StylusButton.cs
- TypeNameHelper.cs
- ResolvedKeyFrameEntry.cs
- TransformerInfo.cs
- XmlUtil.cs
- AlignmentXValidation.cs
- Context.cs
- StorageTypeMapping.cs
- DesignTimeSiteMapProvider.cs
- SizeConverter.cs
- WhiteSpaceTrimStringConverter.cs
- PropertyStore.cs
- InvalidOperationException.cs
- PartitionResolver.cs
- EventLogQuery.cs
- WebConvert.cs
- ASCIIEncoding.cs
- MatchAllMessageFilter.cs
- DelayedRegex.cs
- TreeView.cs
- COSERVERINFO.cs
- ErasingStroke.cs
- PolicyManager.cs
- StringHandle.cs
- Label.cs
- PathData.cs
- ValidationManager.cs
- ControlSerializer.cs
- LineServicesCallbacks.cs
- RequestTimeoutManager.cs
- UiaCoreApi.cs
- PropertyMapper.cs
- DataGridLinkButton.cs
- backend.cs
- DeploymentSection.cs
- WebPartsPersonalizationAuthorization.cs
- LongPath.cs
- DataServiceHostWrapper.cs
- RoleGroupCollection.cs
- ProfileBuildProvider.cs
- Rotation3DKeyFrameCollection.cs