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
- OutputScope.cs
- ProxyElement.cs
- ExpandSegment.cs
- ValidationError.cs
- X509WindowsSecurityToken.cs
- SolidBrush.cs
- XmlEntity.cs
- RankException.cs
- SafeCoTaskMem.cs
- UnicodeEncoding.cs
- XmlSchema.cs
- TimeZoneInfo.cs
- XmlSchemaSimpleType.cs
- MaterialGroup.cs
- GenericNameHandler.cs
- WebServiceResponseDesigner.cs
- DataContractSerializer.cs
- Query.cs
- TraceContextEventArgs.cs
- IntPtr.cs
- TemplatingOptionsDialog.cs
- ComboBoxAutomationPeer.cs
- ServicePoint.cs
- TraceEventCache.cs
- BinarySerializer.cs
- InfoCardSymmetricAlgorithm.cs
- VisualTreeUtils.cs
- DbDataSourceEnumerator.cs
- _NegotiateClient.cs
- ToolStripDropTargetManager.cs
- IPGlobalProperties.cs
- XPathNavigator.cs
- TreeNodeStyleCollection.cs
- ValidatorCollection.cs
- DeviceFiltersSection.cs
- UpdateManifestForBrowserApplication.cs
- ObjectStorage.cs
- StylusButton.cs
- ToolboxService.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- CatalogPartChrome.cs
- TextView.cs
- MessageBox.cs
- NegotiateStream.cs
- RepeaterItemEventArgs.cs
- MatrixConverter.cs
- EntitySetDataBindingList.cs
- DataServiceQueryException.cs
- ExceptionUtil.cs
- MenuCommandService.cs
- Listbox.cs
- EmbeddedObject.cs
- ControlBuilder.cs
- DiscoveryVersion.cs
- ArraySubsetEnumerator.cs
- SerializationObjectManager.cs
- UiaCoreProviderApi.cs
- DispatcherFrame.cs
- StringBuilder.cs
- EditorResources.cs
- LocalizeDesigner.cs
- PingReply.cs
- DocumentEventArgs.cs
- baseaxisquery.cs
- EntityTransaction.cs
- DataBindingCollection.cs
- OptionUsage.cs
- regiisutil.cs
- DiscreteKeyFrames.cs
- OrderedDictionary.cs
- DataShape.cs
- SplineQuaternionKeyFrame.cs
- SessionMode.cs
- PieceNameHelper.cs
- ListView.cs
- Vector3DCollection.cs
- FixedTextView.cs
- SubpageParagraph.cs
- ConstNode.cs
- EntityObject.cs
- PerformanceCounterPermission.cs
- HttpConfigurationContext.cs
- IndexedString.cs
- Transform3DCollection.cs
- ScriptResourceHandler.cs
- AddIn.cs
- TableTextElementCollectionInternal.cs
- SingleObjectCollection.cs
- WriteableOnDemandPackagePart.cs
- CheckableControlBaseAdapter.cs
- HandleDictionary.cs
- ConstraintManager.cs
- SqlFileStream.cs
- HtmlButton.cs
- DataGridViewRowDividerDoubleClickEventArgs.cs
- CodeDOMUtility.cs
- XmlSchemaAttribute.cs
- SimpleHandlerFactory.cs
- ServiceAuthorizationBehavior.cs
- AncestorChangedEventArgs.cs