Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Regex / System / Text / RegularExpressions / RegexCompilationInfo.cs / 1 / RegexCompilationInfo.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
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;}
}
}
}
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TypeConverterValueSerializer.cs
- DeviceContexts.cs
- RtfControls.cs
- BooleanConverter.cs
- ComponentGlyph.cs
- DataGridViewSortCompareEventArgs.cs
- MultiPropertyDescriptorGridEntry.cs
- RuntimeUtils.cs
- TabControlAutomationPeer.cs
- HttpPostedFile.cs
- ExpressionPrefixAttribute.cs
- UpdateException.cs
- RepeatButton.cs
- SendingRequestEventArgs.cs
- SourceFileInfo.cs
- WebBrowserNavigatingEventHandler.cs
- SelectionHighlightInfo.cs
- CellParagraph.cs
- PrtCap_Builder.cs
- DesignerProperties.cs
- OracleRowUpdatingEventArgs.cs
- UIntPtr.cs
- TraceHelpers.cs
- FlagsAttribute.cs
- ModuleElement.cs
- ConfigurationException.cs
- TableLayoutPanelCodeDomSerializer.cs
- PagerSettings.cs
- TextEffect.cs
- FamilyMapCollection.cs
- UniqueSet.cs
- XmlSchemaException.cs
- HtmlInputReset.cs
- CheckableControlBaseAdapter.cs
- DoubleAnimationUsingKeyFrames.cs
- VirtualPath.cs
- WindowsMenu.cs
- FormatException.cs
- JsonQNameDataContract.cs
- TextTreeRootNode.cs
- FileLoadException.cs
- ResourcePool.cs
- UserNameSecurityTokenProvider.cs
- Compiler.cs
- TimeSpanConverter.cs
- OleDbCommandBuilder.cs
- InlinedAggregationOperator.cs
- EntitySetRetriever.cs
- HtmlInputFile.cs
- FilterException.cs
- ItemCollection.cs
- JobInputBins.cs
- TemplateNodeContextMenu.cs
- FileInfo.cs
- SamlAudienceRestrictionCondition.cs
- AddInPipelineAttributes.cs
- ParsedAttributeCollection.cs
- XmlUtilWriter.cs
- KoreanLunisolarCalendar.cs
- MenuItemAutomationPeer.cs
- RunInstallerAttribute.cs
- LineInfo.cs
- OdbcTransaction.cs
- DragStartedEventArgs.cs
- Rights.cs
- SecurityToken.cs
- ThreadStartException.cs
- BuildProvider.cs
- CompilerScopeManager.cs
- SerialPinChanges.cs
- BCLDebug.cs
- DecimalKeyFrameCollection.cs
- xmlglyphRunInfo.cs
- NativeMethods.cs
- altserialization.cs
- MonitoringDescriptionAttribute.cs
- RSAPKCS1SignatureDeformatter.cs
- EntityDataSourceUtil.cs
- CodeTypeMember.cs
- MarshalDirectiveException.cs
- InstanceKeyCompleteException.cs
- FloaterParaClient.cs
- OleDbDataAdapter.cs
- HtmlInputText.cs
- Token.cs
- _UriTypeConverter.cs
- IssuedTokenClientBehaviorsElementCollection.cs
- RegexStringValidator.cs
- ResourcesChangeInfo.cs
- MouseGesture.cs
- PointCollectionConverter.cs
- StaticTextPointer.cs
- MonthChangedEventArgs.cs
- Deserializer.cs
- AuthorizationContext.cs
- CharAnimationBase.cs
- ParenthesizePropertyNameAttribute.cs
- CaseStatement.cs
- NativeObjectSecurity.cs
- CodeDirectiveCollection.cs