Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// [To be supplied] /// ///// 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;} } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// [To be supplied] /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Int32Animation.cs
- StrokeCollection.cs
- DbParameterHelper.cs
- CssClassPropertyAttribute.cs
- RegexWorker.cs
- AffineTransform3D.cs
- FacetChecker.cs
- MediaCommands.cs
- PreservationFileReader.cs
- EraserBehavior.cs
- TableItemPatternIdentifiers.cs
- RenamedEventArgs.cs
- TextTabProperties.cs
- ConnectionManagementElementCollection.cs
- WSDualHttpSecurityElement.cs
- MsmqProcessProtocolHandler.cs
- ConstrainedDataObject.cs
- XmlNamedNodeMap.cs
- ContentElement.cs
- AesCryptoServiceProvider.cs
- HelloMessageCD1.cs
- DNS.cs
- ServiceModelConfigurationElementCollection.cs
- Utils.cs
- XmlSerializerNamespaces.cs
- MDIControlStrip.cs
- XPathDocument.cs
- ColorPalette.cs
- SchemaNamespaceManager.cs
- AssociationType.cs
- OdbcConnectionFactory.cs
- cookiecollection.cs
- _NegoStream.cs
- CachedPathData.cs
- TypeInitializationException.cs
- MethodToken.cs
- DateTimeConverter.cs
- RefreshPropertiesAttribute.cs
- AuthenticationService.cs
- DataStorage.cs
- CompiledQuery.cs
- CompilerWrapper.cs
- BuildResultCache.cs
- Clock.cs
- InputMethodStateChangeEventArgs.cs
- ButtonRenderer.cs
- DataGridViewRow.cs
- ListParaClient.cs
- Debugger.cs
- SubMenuStyle.cs
- SpinLock.cs
- UnsafeNativeMethods.cs
- Bits.cs
- OptimizerPatterns.cs
- ObjectDataSourceView.cs
- WsdlBuildProvider.cs
- RelationshipSet.cs
- XpsManager.cs
- ProgressBarAutomationPeer.cs
- SqlUnionizer.cs
- SamlSecurityToken.cs
- AdornedElementPlaceholder.cs
- CodeAssignStatement.cs
- BinaryReader.cs
- OleDbCommandBuilder.cs
- DataRowView.cs
- CanonicalFormWriter.cs
- SqlClientWrapperSmiStreamChars.cs
- Vector3dCollection.cs
- BitmapEffectCollection.cs
- ScriptMethodAttribute.cs
- Graph.cs
- DependencyProperty.cs
- DataKey.cs
- DocumentPage.cs
- DesignerWidgets.cs
- TreeWalkHelper.cs
- CornerRadius.cs
- ExpressionEditorAttribute.cs
- ApplicationContext.cs
- ToolStripDropTargetManager.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- ListenerChannelContext.cs
- URIFormatException.cs
- RepeatEnumerable.cs
- QueryCursorEventArgs.cs
- XmlSecureResolver.cs
- DesignerListAdapter.cs
- HttpCacheVaryByContentEncodings.cs
- SqlFileStream.cs
- PanelStyle.cs
- BevelBitmapEffect.cs
- LookupNode.cs
- CodeAttributeDeclarationCollection.cs
- ProfileSettings.cs
- GifBitmapEncoder.cs
- TokenBasedSetEnumerator.cs
- OwnerDrawPropertyBag.cs
- COM2IProvidePropertyBuilderHandler.cs
- WebMessageBodyStyleHelper.cs