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
- dbdatarecord.cs
- SamlAdvice.cs
- InputDevice.cs
- UInt16.cs
- TypeNameParser.cs
- HeaderedItemsControl.cs
- ToolStripDropDownItemDesigner.cs
- BasicExpandProvider.cs
- FormsAuthenticationModule.cs
- HtmlSelect.cs
- MergablePropertyAttribute.cs
- SqlProfileProvider.cs
- AdornerDecorator.cs
- AtomParser.cs
- DeviceSpecificChoiceCollection.cs
- PersonalizationProviderHelper.cs
- OdbcError.cs
- TextViewBase.cs
- DirtyTextRange.cs
- DiscoveryServerProtocol.cs
- TraceContextEventArgs.cs
- Span.cs
- DesignerVerbCollection.cs
- DragStartedEventArgs.cs
- HostedElements.cs
- BitmapMetadataBlob.cs
- EmptyEnumerator.cs
- DataGridColumnCollectionEditor.cs
- XmlWriterTraceListener.cs
- ObjectConverter.cs
- X509ChainPolicy.cs
- __Filters.cs
- DbConnectionPoolOptions.cs
- DataServiceRequestOfT.cs
- XmlDownloadManager.cs
- ComponentResourceKeyConverter.cs
- LineServicesRun.cs
- DataRelationCollection.cs
- NonBatchDirectoryCompiler.cs
- ellipse.cs
- DiffuseMaterial.cs
- AttributedMetaModel.cs
- HijriCalendar.cs
- SqlWebEventProvider.cs
- BridgeDataReader.cs
- LocationInfo.cs
- ElementMarkupObject.cs
- WinEventWrap.cs
- TransactionTable.cs
- IDataContractSurrogate.cs
- DataGridItem.cs
- PrimaryKeyTypeConverter.cs
- ApplicationServiceManager.cs
- KeysConverter.cs
- Vector3DCollection.cs
- WindowsGrip.cs
- EntityConnection.cs
- DataGridViewCellConverter.cs
- ParameterElement.cs
- XmlDataSource.cs
- RemoteX509AsymmetricSecurityKey.cs
- UriTemplateTableMatchCandidate.cs
- ErrorsHelper.cs
- WebControlsSection.cs
- GenericAuthenticationEventArgs.cs
- PolicyValidator.cs
- XmlDataProvider.cs
- WorkflowDesignerColors.cs
- ImplicitInputBrush.cs
- RootBuilder.cs
- Menu.cs
- BasicCellRelation.cs
- ByteAnimationUsingKeyFrames.cs
- ProtocolsConfiguration.cs
- RegexStringValidator.cs
- RowUpdatedEventArgs.cs
- InputLanguageSource.cs
- odbcmetadatacolumnnames.cs
- MenuItemBinding.cs
- BaseDataList.cs
- XmlQueryStaticData.cs
- GeometryValueSerializer.cs
- TextFormatterHost.cs
- HttpHandlersInstallComponent.cs
- TransformerTypeCollection.cs
- VariableModifiersHelper.cs
- ArgumentNullException.cs
- DeobfuscatingStream.cs
- PrintDialog.cs
- Ops.cs
- QueryPageSettingsEventArgs.cs
- XsltOutput.cs
- TextSelection.cs
- ListParagraph.cs
- TextSearch.cs
- InplaceBitmapMetadataWriter.cs
- SendSecurityHeaderElementContainer.cs
- TraceXPathNavigator.cs
- EmbeddedMailObjectCollectionEditor.cs
- ReferenceTypeElement.cs