C# Class Pihrtsoft.Text.RegularExpressions.Linq.QuantifiedGroup

Represents a pattern that is quantified, i.e. the quantifier is applied on it. If required, pattern will be enclosed in the (noncapturing) group. This class is abstract.
Inheritance: QuantifiedPattern
Datei anzeigen Open project: JosefPihrt/LinqToRegex

Private Properties

Property Type Description
AppendTo void

Protected Methods

Method Description
AppendQuantifierTo ( PatternBuilder builder ) : void

Appends a quantifier to a specified PatternBuilder.

QuantifiedGroup ( object content ) : System

Initializes a new instance of the QuantifiedGroup class with a specified content.

Private Methods

Method Description
AppendTo ( PatternBuilder builder ) : void

Method Details

AppendQuantifierTo() protected abstract method

Appends a quantifier to a specified PatternBuilder.
protected abstract AppendQuantifierTo ( PatternBuilder builder ) : void
builder PatternBuilder The builder to use for appending the text.
return void

QuantifiedGroup() protected method

Initializes a new instance of the QuantifiedGroup class with a specified content.
is null.
protected QuantifiedGroup ( object content ) : System
content object The content of the group.
return System