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
- ScriptingProfileServiceSection.cs
- BufferAllocator.cs
- LinkArea.cs
- smtpconnection.cs
- ApplicationId.cs
- ServiceDiscoveryBehavior.cs
- FieldAccessException.cs
- DeviceContext.cs
- AddingNewEventArgs.cs
- arc.cs
- Wrapper.cs
- SecureUICommand.cs
- InvalidWorkflowException.cs
- XmlNamespaceDeclarationsAttribute.cs
- BaseTransportHeaders.cs
- ScrollProperties.cs
- LostFocusEventManager.cs
- safemediahandle.cs
- LocationInfo.cs
- TileBrush.cs
- ToolStripButton.cs
- grammarelement.cs
- HuffModule.cs
- StringToken.cs
- SelectedDatesCollection.cs
- SettingsPropertyValueCollection.cs
- smtppermission.cs
- NoneExcludedImageIndexConverter.cs
- RightsManagementPermission.cs
- MetafileHeaderWmf.cs
- XmlObjectSerializer.cs
- ConfigurationManagerInternal.cs
- MetadataException.cs
- NativeMethods.cs
- Update.cs
- ThreadNeutralSemaphore.cs
- IOException.cs
- ExtendedProperty.cs
- AnimationClockResource.cs
- StateManagedCollection.cs
- DataGridViewLinkColumn.cs
- HoistedLocals.cs
- CodeMemberEvent.cs
- DbgCompiler.cs
- odbcmetadatacolumnnames.cs
- DataExpression.cs
- SqlInternalConnectionSmi.cs
- CuspData.cs
- LabelLiteral.cs
- CompoundFileIOPermission.cs
- SafeReversePInvokeHandle.cs
- Scheduling.cs
- EventLogInformation.cs
- HelloOperationCD1AsyncResult.cs
- QuotedPrintableStream.cs
- DriveInfo.cs
- DataPagerField.cs
- Int32.cs
- ConfigXmlAttribute.cs
- SqlParameter.cs
- TransformerTypeCollection.cs
- ControlValuePropertyAttribute.cs
- AssemblyEvidenceFactory.cs
- SapiRecoContext.cs
- MappingItemCollection.cs
- TypeValidationEventArgs.cs
- ItemDragEvent.cs
- QilGenerator.cs
- QuaternionRotation3D.cs
- SequenceDesignerAccessibleObject.cs
- HtmlProps.cs
- X509CertificateInitiatorServiceCredential.cs
- MenuItemBinding.cs
- WebPartHelpVerb.cs
- DiscardableAttribute.cs
- Int32Collection.cs
- TableColumn.cs
- TemplatedAdorner.cs
- Restrictions.cs
- DefaultEvaluationContext.cs
- BufferedReceiveElement.cs
- UnicodeEncoding.cs
- XmlAttribute.cs
- FixedTextSelectionProcessor.cs
- DialogWindow.cs
- EndPoint.cs
- WebPartRestoreVerb.cs
- EntitySqlQueryState.cs
- DesignerLabelAdapter.cs
- XamlGridLengthSerializer.cs
- Popup.cs
- XmlJsonReader.cs
- VoiceSynthesis.cs
- Reference.cs
- OleDbSchemaGuid.cs
- SafeRightsManagementSessionHandle.cs
- TerminateSequenceResponse.cs
- Wildcard.cs
- DataColumnCollection.cs
- XsltLoader.cs