Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- Converter.cs
- DateTimeConverter.cs
- SyndicationDeserializer.cs
- CellLabel.cs
- DesignerCategoryAttribute.cs
- SqlParameter.cs
- LocatorGroup.cs
- SafeFileMappingHandle.cs
- Utilities.cs
- LiteralSubsegment.cs
- MgmtResManager.cs
- URLIdentityPermission.cs
- XmlDictionaryWriter.cs
- DrawingDrawingContext.cs
- OrCondition.cs
- ItemCollection.cs
- PassportAuthenticationEventArgs.cs
- CodeStatement.cs
- ErrorWrapper.cs
- DataGridViewControlCollection.cs
- FlowDocumentView.cs
- DataServiceRequestException.cs
- XmlSchemaAny.cs
- DataGridPagerStyle.cs
- IsolatedStorageException.cs
- WorkingDirectoryEditor.cs
- CompilerState.cs
- _HeaderInfo.cs
- ToolTipAutomationPeer.cs
- InputProcessorProfiles.cs
- DataGridSortCommandEventArgs.cs
- SerTrace.cs
- SoapSchemaExporter.cs
- DelegateCompletionCallbackWrapper.cs
- EntityDataSourceUtil.cs
- MultiBinding.cs
- TypeUnloadedException.cs
- TraceLevelStore.cs
- ParameterModifier.cs
- XsltSettings.cs
- ResXBuildProvider.cs
- COMException.cs
- SimpleType.cs
- ListChangedEventArgs.cs
- HitTestParameters3D.cs
- QuaternionAnimation.cs
- X509ChainPolicy.cs
- ConfigurationSectionGroup.cs
- RegistrySecurity.cs
- ReceiveActivityDesignerTheme.cs
- DesignTimeParseData.cs
- DelegatedStream.cs
- RecordsAffectedEventArgs.cs
- TextSimpleMarkerProperties.cs
- PeerTransportSecurityElement.cs
- ObjectPropertyMapping.cs
- SystemTcpStatistics.cs
- List.cs
- PageTheme.cs
- ListDataBindEventArgs.cs
- SystemWebSectionGroup.cs
- CalloutQueueItem.cs
- Mouse.cs
- ComponentChangingEvent.cs
- ListItemCollection.cs
- Binding.cs
- GridViewCancelEditEventArgs.cs
- DetailsViewUpdateEventArgs.cs
- GridViewRow.cs
- WrapPanel.cs
- DBCSCodePageEncoding.cs
- WindowsEditBoxRange.cs
- HierarchicalDataBoundControl.cs
- FilePrompt.cs
- DateTimeSerializationSection.cs
- ContractCodeDomInfo.cs
- BindStream.cs
- LoadWorkflowCommand.cs
- CngKeyCreationParameters.cs
- NativeRecognizer.cs
- httpserverutility.cs
- AnnouncementEventArgs.cs
- sqlnorm.cs
- XmlCollation.cs
- XmlSchemaAnyAttribute.cs
- BackgroundWorker.cs
- XslTransform.cs
- ArrayConverter.cs
- GridViewColumnCollectionChangedEventArgs.cs
- ColumnTypeConverter.cs
- Brushes.cs
- FreezableCollection.cs
- NavigationFailedEventArgs.cs
- CellCreator.cs
- NavigationEventArgs.cs
- ListBox.cs
- TreeViewTemplateSelector.cs
- DataPagerField.cs
- TabControl.cs
- Button.cs