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; ////// [ 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;} } } }/// [To be supplied] /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Assert.cs
- LineServices.cs
- WeakReferenceEnumerator.cs
- StringToken.cs
- WsdlBuildProvider.cs
- Point.cs
- IdentityNotMappedException.cs
- DesignBindingConverter.cs
- StateDesigner.LayoutSelectionGlyph.cs
- LingerOption.cs
- QueryCreatedEventArgs.cs
- MobileSysDescriptionAttribute.cs
- BinHexDecoder.cs
- NameTable.cs
- TextEndOfSegment.cs
- DbProviderServices.cs
- FormsAuthenticationConfiguration.cs
- DataFieldConverter.cs
- TextRangeEdit.cs
- ThicknessAnimation.cs
- VBIdentifierName.cs
- InsufficientMemoryException.cs
- HelpKeywordAttribute.cs
- QilDataSource.cs
- XamlFilter.cs
- SamlAuthenticationStatement.cs
- QueryAccessibilityHelpEvent.cs
- ServiceModelEnumValidator.cs
- GlobalAclOperationRequirement.cs
- FilePrompt.cs
- Monitor.cs
- OleDbErrorCollection.cs
- AliasGenerator.cs
- EntityTypeEmitter.cs
- XmlMapping.cs
- WizardDesigner.cs
- ListComponentEditorPage.cs
- BinHexEncoder.cs
- BinaryNode.cs
- JavaScriptObjectDeserializer.cs
- LayoutDump.cs
- SecurityUtils.cs
- ChannelBuilder.cs
- HttpCapabilitiesEvaluator.cs
- DbParameterHelper.cs
- TemplatedMailWebEventProvider.cs
- PrimitiveSchema.cs
- TableLayoutSettings.cs
- GcHandle.cs
- ServiceHandle.cs
- AdjustableArrowCap.cs
- HelpEvent.cs
- DictionaryBase.cs
- XslAstAnalyzer.cs
- Stylesheet.cs
- XmlConvert.cs
- MarkupCompiler.cs
- ObjectStateEntryOriginalDbUpdatableDataRecord.cs
- DivideByZeroException.cs
- ControlUtil.cs
- SID.cs
- Baml2006Reader.cs
- ListViewEditEventArgs.cs
- HttpListener.cs
- Metafile.cs
- OleAutBinder.cs
- NamedPipeTransportElement.cs
- DefaultHttpHandler.cs
- ValidatedControlConverter.cs
- DateTimeUtil.cs
- HelloMessageApril2005.cs
- ApplicationServiceManager.cs
- regiisutil.cs
- SoapFault.cs
- IMembershipProvider.cs
- EntityKeyElement.cs
- XmlMtomReader.cs
- Profiler.cs
- StringFunctions.cs
- MetaColumn.cs
- XmlSchemaException.cs
- Triplet.cs
- StrongNameUtility.cs
- WebEncodingValidatorAttribute.cs
- NullReferenceException.cs
- RelationshipNavigation.cs
- GeneralTransform2DTo3DTo2D.cs
- InternalConfigRoot.cs
- MimeParameter.cs
- ListItemConverter.cs
- DefaultValueMapping.cs
- ZeroOpNode.cs
- WindowVisualStateTracker.cs
- StackSpiller.Bindings.cs
- ArrayConverter.cs
- XsdDateTime.cs
- WindowsListViewItemCheckBox.cs
- SettingsAttributes.cs
- DataFieldConverter.cs
- RectAnimation.cs