Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Regex / System / Text / RegularExpressions / RegexCompilationInfo.cs / 1305376 / RegexCompilationInfo.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
#if !SILVERLIGHT
namespace System.Text.RegularExpressions {
using System;
///
///
/// [To be supplied]
///
///
[ Serializable() ]
public class RegexCompilationInfo {
private String pattern;
private RegexOptions options;
private String name;
private String nspace;
private bool isPublic;
///
///
/// [To be supplied]
///
///
public RegexCompilationInfo(String pattern, RegexOptions options, String name, String fullnamespace, bool ispublic) {
Pattern = pattern;
Name = name;
Namespace = fullnamespace;
this.options = options;
isPublic = ispublic;
}
///
///
/// [To be supplied]
///
///
public String Pattern {
get { return pattern; }
set {
if (value == null)
throw new ArgumentNullException("value");
pattern = value;
}
}
///
///
/// [To be supplied]
///
///
public RegexOptions Options {
get { return options; }
set { options = value;}
}
///
///
/// [To be supplied]
///
///
public String Name {
get { return name; }
set {
if (value == null) {
throw new ArgumentNullException("value");
}
if (value.Length == 0) {
throw new ArgumentException(SR.GetString(SR.InvalidNullEmptyArgument, "value"), "value");
}
name = value;
}
}
///
///
/// [To be supplied]
///
///
public String Namespace {
get { return nspace; }
set {
if (value == null)
throw new ArgumentNullException("value");
nspace = value;
}
}
///
///
/// [To be supplied]
///
///
public bool IsPublic {
get { return isPublic; }
set { isPublic = value;}
}
}
}
#endif
// 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
- ObjectQuery.cs
- LambdaCompiler.cs
- metadatamappinghashervisitor.cs
- Journal.cs
- SqlConnectionPoolProviderInfo.cs
- ActivationServices.cs
- XmlSchemaValidationException.cs
- ApplyHostConfigurationBehavior.cs
- LockCookie.cs
- DPCustomTypeDescriptor.cs
- GiveFeedbackEventArgs.cs
- DispatcherEventArgs.cs
- Config.cs
- SqlServer2KCompatibilityCheck.cs
- UIElement.cs
- TargetParameterCountException.cs
- GridViewUpdatedEventArgs.cs
- CustomExpressionEventArgs.cs
- XmlAttributeOverrides.cs
- EnumMember.cs
- LocatorPart.cs
- MetadataUtil.cs
- HttpRawResponse.cs
- GenericWebPart.cs
- SmtpReplyReaderFactory.cs
- StringBuilder.cs
- XmlIgnoreAttribute.cs
- XhtmlBasicPanelAdapter.cs
- VisemeEventArgs.cs
- TemplateParser.cs
- OracleConnectionString.cs
- SemaphoreFullException.cs
- SqlTypesSchemaImporter.cs
- DataReaderContainer.cs
- StorageAssociationTypeMapping.cs
- MDIClient.cs
- Property.cs
- WsiProfilesElementCollection.cs
- ProtocolsSection.cs
- Maps.cs
- Match.cs
- filewebrequest.cs
- KeyboardDevice.cs
- ColumnBinding.cs
- IndependentAnimationStorage.cs
- ZoneIdentityPermission.cs
- InternalPermissions.cs
- DistributedTransactionPermission.cs
- BitmapEffectInputData.cs
- PixelFormatConverter.cs
- TryCatchDesigner.xaml.cs
- ConfigurationFileMap.cs
- CollectionDataContractAttribute.cs
- UserControlBuildProvider.cs
- Emitter.cs
- WebPartCollection.cs
- EncoderReplacementFallback.cs
- ScrollData.cs
- _OverlappedAsyncResult.cs
- StreamSecurityUpgradeAcceptorBase.cs
- MetaType.cs
- AcceptorSessionSymmetricTransportSecurityProtocol.cs
- ByteAnimation.cs
- SystemResources.cs
- LoginView.cs
- List.cs
- ResourcesBuildProvider.cs
- XmlUnspecifiedAttribute.cs
- Models.cs
- ComboBoxItem.cs
- GradientBrush.cs
- Utils.cs
- NativeRightsManagementAPIsStructures.cs
- ValidatorAttribute.cs
- OrElse.cs
- AccessViolationException.cs
- ScrollChrome.cs
- sqlser.cs
- RequestStatusBarUpdateEventArgs.cs
- CounterSample.cs
- GridViewRowPresenterBase.cs
- COM2IDispatchConverter.cs
- WebResourceAttribute.cs
- Site.cs
- M3DUtil.cs
- LazyTextWriterCreator.cs
- HtmlContainerControl.cs
- ToolStripContentPanelRenderEventArgs.cs
- WindowsListBox.cs
- EdmComplexPropertyAttribute.cs
- ProfileGroupSettings.cs
- ServicesUtilities.cs
- TemplateControlParser.cs
- MdImport.cs
- DataGridViewHitTestInfo.cs
- BasicKeyConstraint.cs
- RequestQueryProcessor.cs
- FtpRequestCacheValidator.cs
- SiteMapNodeItemEventArgs.cs
- ObjectStateManagerMetadata.cs