Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Regex / System / Text / RegularExpressions / RegexCompilationInfo.cs / 1305376 / RegexCompilationInfo.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- #if !SILVERLIGHT 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;} } } } #endif // 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
- ActivityCodeDomReferenceService.cs
- ArglessEventHandlerProxy.cs
- DataBoundControlHelper.cs
- EmptyQuery.cs
- ConstructorExpr.cs
- ContractSearchPattern.cs
- DataMemberFieldEditor.cs
- x509utils.cs
- CultureInfoConverter.cs
- BaseCollection.cs
- DataRelationPropertyDescriptor.cs
- RepeaterCommandEventArgs.cs
- CreateSequence.cs
- CorrelationValidator.cs
- SubMenuStyle.cs
- PrintControllerWithStatusDialog.cs
- EntityStoreSchemaFilterEntry.cs
- MarshalByRefObject.cs
- ObjectConverter.cs
- StatusCommandUI.cs
- StylusSystemGestureEventArgs.cs
- TextEffectResolver.cs
- XmlSchemas.cs
- RequestTimeoutManager.cs
- EasingKeyFrames.cs
- _HelperAsyncResults.cs
- FixedSchema.cs
- WindowsImpersonationContext.cs
- StreamInfo.cs
- ToolStripRendererSwitcher.cs
- DataSourceCacheDurationConverter.cs
- Keywords.cs
- PropertyConverter.cs
- MessageQueueInstaller.cs
- CryptoApi.cs
- SHA1CryptoServiceProvider.cs
- FreeFormPanel.cs
- MsmqPoisonMessageException.cs
- GrammarBuilderDictation.cs
- IconConverter.cs
- LicenseException.cs
- Privilege.cs
- _NegotiateClient.cs
- MethodBuilder.cs
- EventRoute.cs
- MultiBinding.cs
- MessageSecurityOverTcpElement.cs
- List.cs
- AngleUtil.cs
- MessageBox.cs
- ChangesetResponse.cs
- MissingMethodException.cs
- ChannelSinkStacks.cs
- SystemTcpConnection.cs
- NavigationProgressEventArgs.cs
- WindowsScrollBar.cs
- EncoderBestFitFallback.cs
- NamespaceDisplayAutomationPeer.cs
- Splitter.cs
- ObservableDictionary.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- DecoratedNameAttribute.cs
- NamespaceQuery.cs
- GenericArgumentsUpdater.cs
- LayoutExceptionEventArgs.cs
- DiscreteKeyFrames.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- MailWriter.cs
- NegotiateStream.cs
- CorrelationScope.cs
- WorkflowElementDialog.cs
- DesignTimeVisibleAttribute.cs
- ItemsPanelTemplate.cs
- Panel.cs
- OleDbConnectionFactory.cs
- AutomationPeer.cs
- SQLBinaryStorage.cs
- ContainerSelectorGlyph.cs
- TextBreakpoint.cs
- NGCPageContentSerializerAsync.cs
- ImageCodecInfo.cs
- FileUtil.cs
- InvokeWebServiceDesigner.cs
- HtmlInputFile.cs
- COM2ExtendedBrowsingHandler.cs
- ThemeDirectoryCompiler.cs
- ACL.cs
- WindowsServiceCredential.cs
- ExpressionBindingCollection.cs
- WeakReferenceList.cs
- SettingsProviderCollection.cs
- TextTabProperties.cs
- UnsafeNativeMethods.cs
- XMLSchema.cs
- ThreadExceptionEvent.cs
- QualifierSet.cs
- RangeContentEnumerator.cs
- ParseElement.cs
- MultipartContentParser.cs
- TreeNode.cs