Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- GeometryModel3D.cs
- FactoryId.cs
- SchemaAttDef.cs
- ViewGenerator.cs
- ObjectContextServiceProvider.cs
- ToolBar.cs
- DataGridViewRowPrePaintEventArgs.cs
- RecognizedPhrase.cs
- TextTreeTextBlock.cs
- WorkerRequest.cs
- EntityDataSourceWrapperCollection.cs
- XmlDataCollection.cs
- RepeaterItem.cs
- SqlCacheDependencyDatabase.cs
- ContainerActivationHelper.cs
- HybridObjectCache.cs
- DataSourceSelectArguments.cs
- FontSizeConverter.cs
- FrameAutomationPeer.cs
- DataObjectCopyingEventArgs.cs
- HealthMonitoringSection.cs
- TableParaClient.cs
- TextTreeRootTextBlock.cs
- Encoder.cs
- AsyncWaitHandle.cs
- TCPClient.cs
- ExtractCollection.cs
- WindowsGraphicsWrapper.cs
- ClientFormsAuthenticationCredentials.cs
- wmiutil.cs
- MailMessageEventArgs.cs
- PasswordRecovery.cs
- SafeRightsManagementHandle.cs
- CodePrimitiveExpression.cs
- sitestring.cs
- TextRangeSerialization.cs
- EnumDataContract.cs
- XmlSchemaDocumentation.cs
- DesignerAttribute.cs
- WebControlsSection.cs
- SingleTagSectionHandler.cs
- MDIClient.cs
- StatusBar.cs
- BaseTemplateCodeDomTreeGenerator.cs
- InstanceDataCollection.cs
- DataGridCell.cs
- BidPrivateBase.cs
- EdmSchemaAttribute.cs
- XmlSchemaAttributeGroupRef.cs
- Stacktrace.cs
- TrimSurroundingWhitespaceAttribute.cs
- StringArrayEditor.cs
- FaultCallbackWrapper.cs
- SqlResolver.cs
- TypeDescriptor.cs
- PathGeometry.cs
- CreateUserErrorEventArgs.cs
- WizardSideBarListControlItem.cs
- TimeSpanFormat.cs
- _SafeNetHandles.cs
- IPipelineRuntime.cs
- TemplateControlParser.cs
- DiscoveryRequestHandler.cs
- ProviderCommandInfoUtils.cs
- StrongTypingException.cs
- httpserverutility.cs
- BindToObject.cs
- WebPartZone.cs
- SoapExtension.cs
- HtmlInputImage.cs
- JsonClassDataContract.cs
- SafeLibraryHandle.cs
- MailAddressCollection.cs
- BindingListCollectionView.cs
- odbcmetadatacollectionnames.cs
- WCFBuildProvider.cs
- EnumerableRowCollection.cs
- IPipelineRuntime.cs
- CodeArrayCreateExpression.cs
- WmfPlaceableFileHeader.cs
- FilterFactory.cs
- LayoutEvent.cs
- TimelineCollection.cs
- CryptoApi.cs
- SkewTransform.cs
- Properties.cs
- Clause.cs
- EmbeddedMailObject.cs
- BamlRecordHelper.cs
- WebResourceUtil.cs
- DictionaryKeyPropertyAttribute.cs
- ChangeInterceptorAttribute.cs
- AnchoredBlock.cs
- ImageSourceConverter.cs
- EditorBrowsableAttribute.cs
- SqlDataSourceTableQuery.cs
- TextDecorations.cs
- ConnectionManagementElementCollection.cs
- TransactionFlowAttribute.cs
- PermissionSetEnumerator.cs