Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Regex / System / Text / RegularExpressions / RegexGroup.cs / 1 / RegexGroup.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // Group represents the substring or substrings that // are captured by a single capturing group after one // regular expression match. namespace System.Text.RegularExpressions { using System.Security.Permissions; ////// Group /// represents the results from a single capturing group. A capturing group can /// capture zero, one, or more strings in a single match because of quantifiers, so /// Group supplies a collection of Capture objects. /// [ Serializable() ] public class Group : Capture { // the empty group object internal static Group _emptygroup = new Group(String.Empty, new int[0], 0); internal int[] _caps; internal int _capcount; internal CaptureCollection _capcoll; internal Group(String text, int[] caps, int capcount) : base(text, capcount == 0 ? 0 : caps[(capcount - 1) * 2], capcount == 0 ? 0 : caps[(capcount * 2) - 1]) { _caps = caps; _capcount = capcount; } /* * True if the match was successful */ ////// public bool Success { get { return _capcount != 0; } } /* * The collection of all captures for this group */ ///Indicates whether the match is successful. ////// public CaptureCollection Captures { get { if (_capcoll == null) _capcoll = new CaptureCollection(this); return _capcoll; } } /* * Convert to a thread-safe object by precomputing cache contents */ ////// Returns a collection of all the captures matched by the capturing /// group, in innermost-leftmost-first order (or innermost-rightmost-first order if /// compiled with the "r" option). The collection may have zero or more items. /// ////// [HostProtection(Synchronization=true)] static public Group Synchronized(Group inner) { if (inner == null) throw new ArgumentNullException("inner"); // force Captures to be computed. CaptureCollection capcoll; Capture dummy; capcoll = inner.Captures; if (inner._capcount > 0) dummy = capcoll[0]; return inner; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //Returns /// a Group object equivalent to the one supplied that is safe to share between /// multiple threads. ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- // Group represents the substring or substrings that // are captured by a single capturing group after one // regular expression match. namespace System.Text.RegularExpressions { using System.Security.Permissions; ////// Group /// represents the results from a single capturing group. A capturing group can /// capture zero, one, or more strings in a single match because of quantifiers, so /// Group supplies a collection of Capture objects. /// [ Serializable() ] public class Group : Capture { // the empty group object internal static Group _emptygroup = new Group(String.Empty, new int[0], 0); internal int[] _caps; internal int _capcount; internal CaptureCollection _capcoll; internal Group(String text, int[] caps, int capcount) : base(text, capcount == 0 ? 0 : caps[(capcount - 1) * 2], capcount == 0 ? 0 : caps[(capcount * 2) - 1]) { _caps = caps; _capcount = capcount; } /* * True if the match was successful */ ////// public bool Success { get { return _capcount != 0; } } /* * The collection of all captures for this group */ ///Indicates whether the match is successful. ////// public CaptureCollection Captures { get { if (_capcoll == null) _capcoll = new CaptureCollection(this); return _capcoll; } } /* * Convert to a thread-safe object by precomputing cache contents */ ////// Returns a collection of all the captures matched by the capturing /// group, in innermost-leftmost-first order (or innermost-rightmost-first order if /// compiled with the "r" option). The collection may have zero or more items. /// ////// [HostProtection(Synchronization=true)] static public Group Synchronized(Group inner) { if (inner == null) throw new ArgumentNullException("inner"); // force Captures to be computed. CaptureCollection capcoll; Capture dummy; capcoll = inner.Captures; if (inner._capcount > 0) dummy = capcoll[0]; return inner; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Returns /// a Group object equivalent to the one supplied that is safe to share between /// multiple threads. ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TileModeValidation.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- FieldToken.cs
- XmlWrappingReader.cs
- CompositionAdorner.cs
- ServiceModelConfiguration.cs
- IndexedString.cs
- CacheHelper.cs
- MouseWheelEventArgs.cs
- WebHeaderCollection.cs
- TcpConnectionPoolSettingsElement.cs
- ProfileService.cs
- DbgUtil.cs
- DomainLiteralReader.cs
- pingexception.cs
- ObjectPersistData.cs
- RandomDelayQueuedSendsAsyncResult.cs
- ProjectionCamera.cs
- DataGridViewLinkColumn.cs
- ObservableCollection.cs
- NodeFunctions.cs
- Cloud.cs
- NavigationHelper.cs
- DrawingContextDrawingContextWalker.cs
- ForceCopyBuildProvider.cs
- BoundsDrawingContextWalker.cs
- ColumnHeaderConverter.cs
- ListItemParagraph.cs
- SmtpSection.cs
- XmlDownloadManager.cs
- APCustomTypeDescriptor.cs
- HyperLinkColumn.cs
- ConnectionManagementElement.cs
- _Events.cs
- AttributedMetaModel.cs
- DebugHandleTracker.cs
- ProtocolsConfigurationHandler.cs
- ConnectionManagementElement.cs
- WebBrowsableAttribute.cs
- ProviderBase.cs
- XmlTextEncoder.cs
- TypeConverterAttribute.cs
- OrthographicCamera.cs
- KeyNotFoundException.cs
- MemberProjectionIndex.cs
- CompilerWrapper.cs
- SystemColorTracker.cs
- AddInActivator.cs
- ToolStripControlHost.cs
- EncodingNLS.cs
- DrawingAttributeSerializer.cs
- Accessors.cs
- HTTPNotFoundHandler.cs
- Point3DIndependentAnimationStorage.cs
- Walker.cs
- Psha1DerivedKeyGenerator.cs
- ObjectHandle.cs
- OrderedDictionary.cs
- MenuItemBindingCollection.cs
- ProxyManager.cs
- X509Certificate.cs
- DbParameterCollection.cs
- ResponseStream.cs
- DecodeHelper.cs
- RoleGroup.cs
- ColorInterpolationModeValidation.cs
- PackWebRequestFactory.cs
- precedingquery.cs
- StrongTypingException.cs
- Int32RectConverter.cs
- DateTimeOffsetStorage.cs
- CodeMethodReturnStatement.cs
- dataSvcMapFileLoader.cs
- NumericUpDownAcceleration.cs
- SafeNativeMethods.cs
- ReadOnlyDataSource.cs
- XmlSchemaInferenceException.cs
- SelectionRangeConverter.cs
- QueryTaskGroupState.cs
- AnimatedTypeHelpers.cs
- XmlAtomErrorReader.cs
- InputDevice.cs
- DecoratedNameAttribute.cs
- SafeBitVector32.cs
- NamedObject.cs
- Stack.cs
- BuilderPropertyEntry.cs
- BufferedGraphicsManager.cs
- WindowsTab.cs
- ChannelServices.cs
- unsafenativemethodsother.cs
- HtmlGenericControl.cs
- WebPartCatalogAddVerb.cs
- PostBackTrigger.cs
- WebServiceErrorEvent.cs
- DataGridTablesFactory.cs
- MemoryStream.cs
- EditingCommands.cs
- RuntimeConfig.cs
- DPAPIProtectedConfigurationProvider.cs