Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / Protocols / MatchAttribute.cs / 1305376 / MatchAttribute.cs
namespace System.Web.Services.Protocols {
using System;
using System.Security.Permissions;
///
///
/// [To be supplied.]
///
[AttributeUsage(AttributeTargets.All)]
public sealed class MatchAttribute : System.Attribute {
string pattern;
int group = 1;
int capture = 0;
bool ignoreCase = false;
int repeats = -1;
///
///
/// [To be supplied.]
///
public MatchAttribute(string pattern) {
this.pattern = pattern;
}
///
///
/// [To be supplied.]
///
public string Pattern {
get { return pattern == null ? string.Empty : pattern; }
set { pattern = value; }
}
///
///
/// [To be supplied.]
///
public int Group {
get { return group; }
set { group = value; }
}
///
///
/// [To be supplied.]
///
public int Capture {
get { return capture; }
set { capture = value; }
}
///
///
/// [To be supplied.]
///
public bool IgnoreCase {
get { return ignoreCase; }
set { ignoreCase = value; }
}
///
///
/// [To be supplied.]
///
public int MaxRepeats {
get { return repeats; }
set { repeats = value; }
}
}
}
// 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
- CompiledQuery.cs
- DefaultIfEmptyQueryOperator.cs
- OrderedDictionary.cs
- DataGridState.cs
- SessionSymmetricMessageSecurityProtocolFactory.cs
- SecurityTokenInclusionMode.cs
- SynchronizedDispatch.cs
- StandardBindingImporter.cs
- EdmTypeAttribute.cs
- NullReferenceException.cs
- DefaultBindingPropertyAttribute.cs
- SHA384Managed.cs
- Fonts.cs
- CommandCollectionEditor.cs
- VariantWrapper.cs
- DesignerContextDescriptor.cs
- DataTemplate.cs
- PropertyToken.cs
- DataPointer.cs
- COM2ExtendedUITypeEditor.cs
- BitArray.cs
- ViewLoader.cs
- TemplateControlCodeDomTreeGenerator.cs
- AsymmetricSignatureDeformatter.cs
- PasswordBoxAutomationPeer.cs
- XamlReaderConstants.cs
- Configuration.cs
- ValidationManager.cs
- ConfigurationHandlersInstallComponent.cs
- mongolianshape.cs
- XmlUtilWriter.cs
- ItemType.cs
- AuthenticationManager.cs
- DbDataReader.cs
- rsa.cs
- XmlObjectSerializerWriteContextComplex.cs
- FilterEventArgs.cs
- AliasGenerator.cs
- CqlParserHelpers.cs
- MethodInfo.cs
- EventPropertyMap.cs
- HtmlInputButton.cs
- SecurityUtils.cs
- DrawListViewSubItemEventArgs.cs
- SelectorAutomationPeer.cs
- TraceHandlerErrorFormatter.cs
- TextServicesPropertyRanges.cs
- FontNamesConverter.cs
- TextDpi.cs
- SymmetricSecurityProtocolFactory.cs
- ProfileSettings.cs
- DataGridRowEventArgs.cs
- WebBrowserHelper.cs
- CheckedListBox.cs
- Vector3DCollectionValueSerializer.cs
- StandardTransformFactory.cs
- ButtonFieldBase.cs
- ListChunk.cs
- IFlowDocumentViewer.cs
- CanonicalFontFamilyReference.cs
- XmlSerializerAssemblyAttribute.cs
- SqlFileStream.cs
- XslAstAnalyzer.cs
- DesignerDataSourceView.cs
- PathSegmentCollection.cs
- BaseTemplateBuildProvider.cs
- HwndTarget.cs
- CodeObject.cs
- FirewallWrapper.cs
- MimeTypeMapper.cs
- MimeParameters.cs
- HijriCalendar.cs
- DiscardableAttribute.cs
- KerberosSecurityTokenAuthenticator.cs
- NavigationFailedEventArgs.cs
- UnsafeNativeMethods.cs
- Validator.cs
- WebPartMenu.cs
- SymLanguageType.cs
- SubMenuStyleCollection.cs
- CachedPathData.cs
- UdpConstants.cs
- FacetDescriptionElement.cs
- X509IssuerSerialKeyIdentifierClause.cs
- Matrix3D.cs
- CorrelationExtension.cs
- NativeMethods.cs
- _SingleItemRequestCache.cs
- BaseTypeViewSchema.cs
- NativeCppClassAttribute.cs
- ProxySimple.cs
- OdbcConnectionHandle.cs
- ProcessHostMapPath.cs
- XmlValueConverter.cs
- Image.cs
- CustomErrorsSection.cs
- TagNameToTypeMapper.cs
- cookieexception.cs
- X509CertificateCollection.cs
- IdentifierService.cs