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
- DataBinding.cs
- Point3DConverter.cs
- _HelperAsyncResults.cs
- DateTimeOffsetStorage.cs
- DelimitedListTraceListener.cs
- CacheRequest.cs
- TargetControlTypeCache.cs
- NotImplementedException.cs
- StructuredTypeEmitter.cs
- ControlBuilder.cs
- MultiSelectRootGridEntry.cs
- DateTimeParse.cs
- ExtendedPropertyDescriptor.cs
- WebPartZoneBaseDesigner.cs
- ClickablePoint.cs
- Block.cs
- DocumentSchemaValidator.cs
- Color.cs
- StructuralCache.cs
- SiteMapNode.cs
- HtmlCommandAdapter.cs
- AttributeTable.cs
- DesignerTransaction.cs
- cookiecontainer.cs
- DependencyPropertyKind.cs
- StaticFileHandler.cs
- Iis7Helper.cs
- WebPartMinimizeVerb.cs
- RelativeSource.cs
- ExpandedWrapper.cs
- Win32.cs
- XMLUtil.cs
- StyleSheetRefUrlEditor.cs
- Control.cs
- EntityDataSourceViewSchema.cs
- SecurityPermission.cs
- SubMenuStyle.cs
- CFStream.cs
- SystemIPGlobalStatistics.cs
- GestureRecognizer.cs
- Icon.cs
- ActivationArguments.cs
- StreamInfo.cs
- ActivityValidator.cs
- ProviderConnectionPointCollection.cs
- ServiceAppDomainAssociationProvider.cs
- RuleSettings.cs
- SerializationException.cs
- RadioButtonBaseAdapter.cs
- SequenceFullException.cs
- CodeDirectoryCompiler.cs
- FreezableCollection.cs
- OpCodes.cs
- RadioButtonList.cs
- EntityViewGenerationAttribute.cs
- SoapExtensionTypeElement.cs
- TriState.cs
- DataGridViewRowConverter.cs
- GroupStyle.cs
- AppearanceEditorPart.cs
- TickBar.cs
- GenericsInstances.cs
- SqlClientMetaDataCollectionNames.cs
- WindowsGraphics.cs
- DisplayNameAttribute.cs
- RequestCacheValidator.cs
- XsltQilFactory.cs
- FontUnit.cs
- CultureInfoConverter.cs
- HtmlInputSubmit.cs
- ProxyGenerator.cs
- ProfileBuildProvider.cs
- DodSequenceMerge.cs
- WinEventHandler.cs
- ModelServiceImpl.cs
- SHA384CryptoServiceProvider.cs
- NullableFloatMinMaxAggregationOperator.cs
- DataGridColumnCollection.cs
- SourceSwitch.cs
- ProfileEventArgs.cs
- SignatureResourcePool.cs
- HandlerFactoryCache.cs
- TypeDescriptionProvider.cs
- DataError.cs
- DataGridCellEditEndingEventArgs.cs
- OdbcStatementHandle.cs
- SynchronizedInputPattern.cs
- ConfigurationPropertyCollection.cs
- VirtualPath.cs
- WebRequestModulesSection.cs
- SmiEventSink.cs
- ImageMetadata.cs
- RetrieveVirtualItemEventArgs.cs
- DataGridViewRowPostPaintEventArgs.cs
- AxHost.cs
- errorpatternmatcher.cs
- NativeMethods.cs
- FigureParaClient.cs
- ObjectQueryProvider.cs
- OneOfScalarConst.cs