Code:
/ DotNET / DotNET / 8.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
- ToolZone.cs
- FloatUtil.cs
- List.cs
- InputScope.cs
- RepeatButton.cs
- SqlMethodAttribute.cs
- TrackingLocationCollection.cs
- Permission.cs
- ItemChangedEventArgs.cs
- XamlRtfConverter.cs
- TextModifierScope.cs
- BamlBinaryWriter.cs
- KeyedHashAlgorithm.cs
- DescendantOverDescendantQuery.cs
- AsymmetricKeyExchangeFormatter.cs
- CorrelationManager.cs
- CqlIdentifiers.cs
- LocalizationCodeDomSerializer.cs
- TrackPoint.cs
- BamlCollectionHolder.cs
- Timer.cs
- OutputScope.cs
- QueryStringParameter.cs
- XmlDataProvider.cs
- XmlSerializationGeneratedCode.cs
- HtmlInputImage.cs
- FormsAuthenticationEventArgs.cs
- Exception.cs
- BindingMemberInfo.cs
- EncoderFallback.cs
- ResourcePart.cs
- brushes.cs
- dataSvcMapFileLoader.cs
- WorkerRequest.cs
- TagMapCollection.cs
- ContextStaticAttribute.cs
- NotImplementedException.cs
- Deserializer.cs
- Collection.cs
- HandleCollector.cs
- HyperLinkStyle.cs
- DescendentsWalker.cs
- UpWmlMobileTextWriter.cs
- codemethodreferenceexpression.cs
- AspNetSynchronizationContext.cs
- ClientSettingsStore.cs
- TraceInternal.cs
- ToolStripSeparator.cs
- DecoderFallback.cs
- rsa.cs
- DataGridRelationshipRow.cs
- MultilineStringConverter.cs
- ImpersonationContext.cs
- ModelTypeConverter.cs
- MetadataItem.cs
- QilName.cs
- NumberFunctions.cs
- Menu.cs
- PropertyMapper.cs
- DbConnectionPoolIdentity.cs
- TypeListConverter.cs
- xmlglyphRunInfo.cs
- Normalization.cs
- DocumentGridContextMenu.cs
- FormatVersion.cs
- FillRuleValidation.cs
- DuplicateWaitObjectException.cs
- XmlSchemaAnnotation.cs
- DialogDivider.cs
- FlowDocumentScrollViewer.cs
- ResourcePool.cs
- Button.cs
- SelectedGridItemChangedEvent.cs
- WebPartConnectionsCloseVerb.cs
- Base64Encoding.cs
- ReadWriteObjectLock.cs
- WsatServiceCertificate.cs
- CacheVirtualItemsEvent.cs
- sapiproxy.cs
- WaitHandle.cs
- AssemblyAttributes.cs
- ConnectivityStatus.cs
- BulletedListEventArgs.cs
- ConfigurationPropertyAttribute.cs
- CheckBoxList.cs
- ServiceHttpModule.cs
- Win32PrintDialog.cs
- RtfFormatStack.cs
- PersonalizationDictionary.cs
- Underline.cs
- AuthenticationModuleElementCollection.cs
- WebBrowserContainer.cs
- OLEDB_Util.cs
- AutoCompleteStringCollection.cs
- XPathExpr.cs
- SqlDependencyListener.cs
- WindowsFormsSectionHandler.cs
- DataListCommandEventArgs.cs
- XmlLinkedNode.cs
- SubtreeProcessor.cs