Code:
/ FX-1434 / FX-1434 / 1.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
- PersistenceProvider.cs
- DataGridViewLinkColumn.cs
- CancellableEnumerable.cs
- PointKeyFrameCollection.cs
- ListMarkerSourceInfo.cs
- sqlinternaltransaction.cs
- Compiler.cs
- XmlToDatasetMap.cs
- CryptoStream.cs
- OdbcParameter.cs
- Axis.cs
- SerializationBinder.cs
- ListSortDescriptionCollection.cs
- BrowserCapabilitiesFactoryBase.cs
- Interlocked.cs
- ScalarType.cs
- SerializationStore.cs
- ITextView.cs
- CommandEventArgs.cs
- OfTypeExpression.cs
- TransformDescriptor.cs
- WindowPatternIdentifiers.cs
- ConfigXmlAttribute.cs
- LineVisual.cs
- MemoryMappedViewStream.cs
- AuthenticationModuleElementCollection.cs
- XmlArrayItemAttributes.cs
- ApplicationFileParser.cs
- BuilderInfo.cs
- HttpCachePolicyElement.cs
- MappedMetaModel.cs
- StickyNoteAnnotations.cs
- XmlSchemaElement.cs
- ControlAdapter.cs
- SchemaImporterExtension.cs
- XmlSchemaInclude.cs
- Triplet.cs
- OleCmdHelper.cs
- Decoder.cs
- FlowPosition.cs
- DockAndAnchorLayout.cs
- DesignerAttributeInfo.cs
- Style.cs
- Polyline.cs
- CoreSwitches.cs
- SchemaTableColumn.cs
- EasingKeyFrames.cs
- WindowsTab.cs
- DeferredElementTreeState.cs
- DocumentViewerBase.cs
- XamlWriterExtensions.cs
- ProcessThread.cs
- XPathNodeList.cs
- FontFamilyConverter.cs
- WebPartManagerInternals.cs
- DeflateEmulationStream.cs
- SourceSwitch.cs
- IgnoreSectionHandler.cs
- ClientOperationFormatterProvider.cs
- TraceSection.cs
- ResourceDescriptionAttribute.cs
- ContainerUtilities.cs
- CodeBlockBuilder.cs
- HwndKeyboardInputProvider.cs
- WmfPlaceableFileHeader.cs
- DataGridViewRowStateChangedEventArgs.cs
- AttributeCollection.cs
- ConfigurationSectionGroup.cs
- RadioButtonDesigner.cs
- SafeHandles.cs
- ChangesetResponse.cs
- ValueConversionAttribute.cs
- FilterEventArgs.cs
- ClientRuntimeConfig.cs
- Behavior.cs
- ToolStripLocationCancelEventArgs.cs
- AffineTransform3D.cs
- RightsManagementInformation.cs
- BitSet.cs
- AccessText.cs
- FormView.cs
- WebPartCatalogAddVerb.cs
- TextEffectResolver.cs
- ElementProxy.cs
- StringValidatorAttribute.cs
- MultiBindingExpression.cs
- FixedTextContainer.cs
- HtmlControl.cs
- FixedSOMLineRanges.cs
- _FtpControlStream.cs
- CodeCastExpression.cs
- UrlMappingCollection.cs
- DisplayNameAttribute.cs
- TrustSection.cs
- BitmapEffectRenderDataResource.cs
- AssemblyBuilderData.cs
- AsyncOperationManager.cs
- _SpnDictionary.cs
- ToolStripItemTextRenderEventArgs.cs
- XPathAxisIterator.cs