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
- BamlLocalizerErrorNotifyEventArgs.cs
- SqlDataSource.cs
- CodeGroup.cs
- MemoryPressure.cs
- PenThreadPool.cs
- LookupTables.cs
- TextMetrics.cs
- UpdateProgress.cs
- SafePointer.cs
- ViewStateException.cs
- DbModificationCommandTree.cs
- DictionarySectionHandler.cs
- SqlRemoveConstantOrderBy.cs
- PathGeometry.cs
- JoinSymbol.cs
- securestring.cs
- TimelineCollection.cs
- Cursor.cs
- ConnectionManagementElementCollection.cs
- PropertyState.cs
- PerfCounters.cs
- QueryMatcher.cs
- ActivityExecutorOperation.cs
- _ListenerRequestStream.cs
- ClientConfigurationSystem.cs
- DbXmlEnabledProviderManifest.cs
- LoginName.cs
- WorkflowQueuingService.cs
- IntPtr.cs
- ControlBuilderAttribute.cs
- BasicHttpBindingCollectionElement.cs
- MenuCommandService.cs
- ToolStripArrowRenderEventArgs.cs
- DrawListViewItemEventArgs.cs
- CodeGroup.cs
- LayoutEditorPart.cs
- Package.cs
- PeerEndPoint.cs
- Animatable.cs
- TreeNodeStyleCollection.cs
- MatchAttribute.cs
- RowToFieldTransformer.cs
- ScriptBehaviorDescriptor.cs
- HealthMonitoringSection.cs
- KeyValuePairs.cs
- printdlgexmarshaler.cs
- wmiprovider.cs
- XamlToRtfParser.cs
- SafeArrayTypeMismatchException.cs
- NativeMethods.cs
- CompilerInfo.cs
- NetworkInterface.cs
- SynchronousReceiveElement.cs
- SafeMemoryMappedFileHandle.cs
- MemoryFailPoint.cs
- RawAppCommandInputReport.cs
- CodeParameterDeclarationExpression.cs
- SoapAttributeAttribute.cs
- WindowsIdentity.cs
- bindurihelper.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- TemplateEditingService.cs
- FrameDimension.cs
- Type.cs
- NotifyIcon.cs
- BaseResourcesBuildProvider.cs
- StatusBarAutomationPeer.cs
- FrameworkElementAutomationPeer.cs
- PolyBezierSegment.cs
- ParameterToken.cs
- DocumentProperties.cs
- HttpCachePolicy.cs
- VectorCollection.cs
- _Win32.cs
- XmlQueryStaticData.cs
- WindowVisualStateTracker.cs
- VisualStateChangedEventArgs.cs
- Convert.cs
- SqlDataSourceSelectingEventArgs.cs
- DbConnectionFactory.cs
- EventLogger.cs
- InputReport.cs
- Transform3D.cs
- GeometryHitTestResult.cs
- BinaryParser.cs
- PathFigureCollectionValueSerializer.cs
- FixedBufferAttribute.cs
- ConditionValidator.cs
- OSEnvironmentHelper.cs
- JsonUriDataContract.cs
- LazyTextWriterCreator.cs
- PrePrepareMethodAttribute.cs
- CancellationTokenSource.cs
- LayoutEngine.cs
- InertiaExpansionBehavior.cs
- AssociationTypeEmitter.cs
- FormattedText.cs
- CodeTypeReference.cs
- NamedPipeHostedTransportConfiguration.cs
- BackgroundWorker.cs