Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- PTManager.cs
- RtType.cs
- AssociativeAggregationOperator.cs
- SRGSCompiler.cs
- BulletedListEventArgs.cs
- PropertyCondition.cs
- ellipse.cs
- TempEnvironment.cs
- DataListItemEventArgs.cs
- GroupStyle.cs
- SmiRecordBuffer.cs
- RawContentTypeMapper.cs
- ButtonFlatAdapter.cs
- AesManaged.cs
- Viewport2DVisual3D.cs
- DynamicPropertyReader.cs
- ProfileGroupSettingsCollection.cs
- TextChangedEventArgs.cs
- XmlSchemaSimpleContentExtension.cs
- ToolboxItem.cs
- AlternateViewCollection.cs
- Bits.cs
- StaticFileHandler.cs
- RootBrowserWindowProxy.cs
- HandledEventArgs.cs
- WebConfigurationHost.cs
- SerializationAttributes.cs
- SqlNotificationEventArgs.cs
- DataDocumentXPathNavigator.cs
- DataSourceView.cs
- PaintEvent.cs
- PageSettings.cs
- BuilderPropertyEntry.cs
- IdentityHolder.cs
- RegexGroup.cs
- ListViewContainer.cs
- ProofTokenCryptoHandle.cs
- EdmComplexPropertyAttribute.cs
- ResourcePermissionBase.cs
- DesignerActionItemCollection.cs
- DesignTimeParseData.cs
- ActiveDocumentEvent.cs
- SqlFacetAttribute.cs
- Encoder.cs
- _ProxyRegBlob.cs
- SystemNetworkInterface.cs
- RegexCompilationInfo.cs
- HtmlInputImage.cs
- FormCollection.cs
- DefaultPropertyAttribute.cs
- SelectManyQueryOperator.cs
- TextServicesDisplayAttribute.cs
- QueryStringParameter.cs
- BroadcastEventHelper.cs
- RetrieveVirtualItemEventArgs.cs
- RightsManagementPermission.cs
- ModifyActivitiesPropertyDescriptor.cs
- DataBindingsDialog.cs
- ConnectionManager.cs
- AnonymousIdentificationModule.cs
- HttpDebugHandler.cs
- OdbcCommandBuilder.cs
- MoveSizeWinEventHandler.cs
- Clock.cs
- AttributeTable.cs
- MaterializeFromAtom.cs
- ObjectDataSourceMethodEventArgs.cs
- ColorKeyFrameCollection.cs
- MouseGestureValueSerializer.cs
- CallbackException.cs
- ExpressionDumper.cs
- PaginationProgressEventArgs.cs
- ListViewTableRow.cs
- NameScope.cs
- DataSourceView.cs
- Guid.cs
- AsymmetricSignatureFormatter.cs
- Comparer.cs
- DefaultBindingPropertyAttribute.cs
- BaseDataListPage.cs
- IsolatedStorageSecurityState.cs
- OdbcException.cs
- Timer.cs
- BasicExpandProvider.cs
- DataGridDetailsPresenterAutomationPeer.cs
- NativeMethods.cs
- ProfileModule.cs
- NavigatingCancelEventArgs.cs
- WindowsHyperlink.cs
- TypeUsageBuilder.cs
- ScalarType.cs
- RecognizerBase.cs
- CodeExpressionRuleDeclaration.cs
- ViewRendering.cs
- DataGridViewComboBoxEditingControl.cs
- EventListener.cs
- DerivedKeySecurityToken.cs
- StreamWriter.cs
- HtmlUtf8RawTextWriter.cs
- __Error.cs