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
- Facet.cs
- ChangePassword.cs
- ContainerAction.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- FixedBufferAttribute.cs
- Baml2006SchemaContext.cs
- EventRoute.cs
- GlyphInfoList.cs
- StatusBarPanelClickEvent.cs
- HtmlTernaryTree.cs
- LinearKeyFrames.cs
- BuildResultCache.cs
- DictionaryChange.cs
- ExpressionDumper.cs
- CellIdBoolean.cs
- PingOptions.cs
- FormsAuthenticationUser.cs
- invalidudtexception.cs
- DescendantQuery.cs
- NativeMethodsOther.cs
- ZipIOModeEnforcingStream.cs
- SimpleHandlerFactory.cs
- StylusTip.cs
- OutOfProcStateClientManager.cs
- ButtonColumn.cs
- Debugger.cs
- StylusTip.cs
- Vector3DAnimation.cs
- DefaultCommandConverter.cs
- UnsafeNativeMethods.cs
- SessionEndingEventArgs.cs
- ScriptManager.cs
- ReadContentAsBinaryHelper.cs
- LightweightCodeGenerator.cs
- BindingGroup.cs
- CallbackException.cs
- Polygon.cs
- SafeFindHandle.cs
- InvokeGenerator.cs
- FirstMatchCodeGroup.cs
- SiteMapDataSource.cs
- BitmapEffect.cs
- CapabilitiesAssignment.cs
- DetailsViewRow.cs
- TaskFileService.cs
- DataStorage.cs
- JsonReaderDelegator.cs
- Point4D.cs
- XmlObjectSerializerWriteContext.cs
- Compress.cs
- BamlRecordReader.cs
- TextMetrics.cs
- SetStoryboardSpeedRatio.cs
- SmtpNegotiateAuthenticationModule.cs
- ScaleTransform.cs
- PropertyBuilder.cs
- SpeechEvent.cs
- HeaderedContentControl.cs
- WebPageTraceListener.cs
- EncoderFallback.cs
- DefaultAsyncDataDispatcher.cs
- RemotingConfigParser.cs
- TimeSpanFormat.cs
- FileUtil.cs
- MergeFailedEvent.cs
- CommandConverter.cs
- LogWriteRestartAreaAsyncResult.cs
- DataObjectEventArgs.cs
- SByteStorage.cs
- ImplicitInputBrush.cs
- TextContainerHelper.cs
- SaveFileDialog.cs
- DetailsViewUpdatedEventArgs.cs
- XmlNamespaceDeclarationsAttribute.cs
- KeyValuePairs.cs
- LineInfo.cs
- DataGridViewColumnStateChangedEventArgs.cs
- PreviewControlDesigner.cs
- Substitution.cs
- XmlLinkedNode.cs
- Convert.cs
- GeneralTransform2DTo3DTo2D.cs
- LocalizedNameDescriptionPair.cs
- DataGridViewAdvancedBorderStyle.cs
- MimeTextImporter.cs
- MessageQueueTransaction.cs
- SharedRuntimeState.cs
- DataGridViewColumnEventArgs.cs
- ToolStripPanelRenderEventArgs.cs
- HttpResponseHeader.cs
- ProcessModule.cs
- NullEntityWrapper.cs
- CrossContextChannel.cs
- ISAPIRuntime.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- NotImplementedException.cs
- HttpPostClientProtocol.cs
- Soap.cs
- AccessDataSourceDesigner.cs
- KeyPressEvent.cs