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
- DetailsViewDeleteEventArgs.cs
- Tokenizer.cs
- LineInfo.cs
- DataServiceHost.cs
- TTSVoice.cs
- VerificationException.cs
- MultiAsyncResult.cs
- XmlSchemaObject.cs
- Debugger.cs
- SpecularMaterial.cs
- ListViewTableRow.cs
- EntityDataSourceWizardForm.cs
- StateMachineDesignerPaint.cs
- DbResourceAllocator.cs
- Vector.cs
- HttpConfigurationSystem.cs
- SqlRetyper.cs
- Activity.cs
- ObjRef.cs
- CollectionEditor.cs
- StatusStrip.cs
- GeneralTransformGroup.cs
- InfiniteTimeSpanConverter.cs
- TextRangeEditTables.cs
- OleCmdHelper.cs
- QilDataSource.cs
- WebPartUtil.cs
- ActionFrame.cs
- SecurityTraceRecordHelper.cs
- ReferenceConverter.cs
- CriticalFinalizerObject.cs
- DataGridTableCollection.cs
- Console.cs
- StringUtil.cs
- ToolStripItemCollection.cs
- DESCryptoServiceProvider.cs
- Propagator.ExtentPlaceholderCreator.cs
- RemotingAttributes.cs
- Component.cs
- EntryPointNotFoundException.cs
- CodeEntryPointMethod.cs
- SmtpTransport.cs
- ItemCollection.cs
- AsyncResult.cs
- BaseInfoTable.cs
- SqlGenericUtil.cs
- WinFormsUtils.cs
- RectIndependentAnimationStorage.cs
- XpsDigitalSignature.cs
- ExpressionContext.cs
- UIntPtr.cs
- KeyboardDevice.cs
- MILUtilities.cs
- RemotingAttributes.cs
- ExpressionVisitorHelpers.cs
- SliderAutomationPeer.cs
- MessageQueuePermissionAttribute.cs
- DomainLiteralReader.cs
- LoggedException.cs
- PropertyItem.cs
- ObjectDataSourceStatusEventArgs.cs
- WsatAdminException.cs
- SqlDataSourceCustomCommandPanel.cs
- WindowsListViewGroupHelper.cs
- ConvertEvent.cs
- QuaternionConverter.cs
- ValidationError.cs
- Attachment.cs
- TimeSpanMinutesConverter.cs
- CngKeyBlobFormat.cs
- CodeExpressionCollection.cs
- ModelUIElement3D.cs
- GestureRecognizer.cs
- XamlPoint3DCollectionSerializer.cs
- PeerName.cs
- HitTestWithGeometryDrawingContextWalker.cs
- BuildProvider.cs
- AvTrace.cs
- QilGeneratorEnv.cs
- FactoryRecord.cs
- ManagedWndProcTracker.cs
- DoubleAnimationClockResource.cs
- StringToken.cs
- CompilationUtil.cs
- RequestSecurityToken.cs
- LogAppendAsyncResult.cs
- IISMapPath.cs
- Slider.cs
- ObjectDesignerDataSourceView.cs
- ColumnWidthChangedEvent.cs
- CircleHotSpot.cs
- ValueQuery.cs
- IListConverters.cs
- IndexOutOfRangeException.cs
- SafeArrayRankMismatchException.cs
- XmlDataCollection.cs
- RequestSecurityToken.cs
- SQLDateTime.cs
- EntityAdapter.cs
- Propagator.JoinPropagator.cs