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
- ContextMenuStripActionList.cs
- ObjectViewEntityCollectionData.cs
- SqlColumnizer.cs
- BaseTreeIterator.cs
- GregorianCalendarHelper.cs
- BookmarkEventArgs.cs
- CollectionDataContractAttribute.cs
- WebServiceTypeData.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- ButtonBase.cs
- ListItem.cs
- Win32KeyboardDevice.cs
- SubMenuStyleCollection.cs
- InvalidateEvent.cs
- ModelEditingScope.cs
- TreeViewItemAutomationPeer.cs
- PropertyDescriptorCollection.cs
- Model3D.cs
- AnnotationResource.cs
- DeferredTextReference.cs
- MultiTouchSystemGestureLogic.cs
- Clause.cs
- PassportAuthentication.cs
- ProtectedProviderSettings.cs
- SyndicationLink.cs
- AnnotationResource.cs
- JsonEncodingStreamWrapper.cs
- EntityTypeEmitter.cs
- QuerySettings.cs
- QueryOutputWriter.cs
- CodeDomLocalizationProvider.cs
- FixedPageProcessor.cs
- TypeBinaryExpression.cs
- Debug.cs
- AlignmentYValidation.cs
- SchemaNames.cs
- InputReportEventArgs.cs
- SignatureDescription.cs
- TextBoxView.cs
- IChannel.cs
- GridToolTip.cs
- CopyOfAction.cs
- manifestimages.cs
- MachineKeyValidationConverter.cs
- Mapping.cs
- HtmlInputHidden.cs
- EntityContainerEmitter.cs
- FreezableOperations.cs
- PointF.cs
- ListViewCancelEventArgs.cs
- XsltLoader.cs
- TextEndOfLine.cs
- EntityDataSourceChangingEventArgs.cs
- DesignerAdapterAttribute.cs
- ScrollContentPresenter.cs
- Rect3D.cs
- SchemaCollectionPreprocessor.cs
- ExpressionEditorAttribute.cs
- SqlGenericUtil.cs
- SmiTypedGetterSetter.cs
- HwndSourceParameters.cs
- SQLInt16.cs
- Identity.cs
- DataGridCommandEventArgs.cs
- Select.cs
- FixUp.cs
- GenericIdentity.cs
- ObjectDataSourceStatusEventArgs.cs
- VectorValueSerializer.cs
- DataGridViewRowErrorTextNeededEventArgs.cs
- CommunicationObjectFaultedException.cs
- OleDbConnectionInternal.cs
- ErrorFormatter.cs
- PermissionSet.cs
- DES.cs
- SqlWebEventProvider.cs
- GeometryGroup.cs
- TypeConverterHelper.cs
- Style.cs
- Rfc2898DeriveBytes.cs
- TransactionManagerProxy.cs
- typedescriptorpermissionattribute.cs
- HashRepartitionEnumerator.cs
- CrossAppDomainChannel.cs
- BaseComponentEditor.cs
- AliasExpr.cs
- DbQueryCommandTree.cs
- ControlCachePolicy.cs
- ContentPosition.cs
- FontStyleConverter.cs
- BaseCollection.cs
- SymLanguageType.cs
- _SpnDictionary.cs
- FontSource.cs
- SqlCommandSet.cs
- DataGridViewHeaderCell.cs
- FixedSOMGroup.cs
- VisualTreeUtils.cs
- DataGridCellEditEndingEventArgs.cs
- BinaryObjectInfo.cs