C# Class MoreInternals.Model.CompoundSelector

A compound selector The Outer selector is further constrained by the Inner one So, [.hello] [.world] matches all .world(s) in .hello(s). Technically, all selectors are compound selectors descending from the Wildcard selector.
Inheritance: Selector
显示文件 Open project: kevin-montrose/More Class Usage Examples

Public Methods

Method Description
CombineSelectors ( Selector outer, Selector inner, int start, int stop, string filePath ) : Selector
Write ( TextWriter output ) : void

Private Methods

Method Description
CompoundSelector ( Selector outer, Selector inner, int start, int stop, string filePath ) : System
ToString ( ) : string

Method Details

CombineSelectors() public static method

public static CombineSelectors ( Selector outer, Selector inner, int start, int stop, string filePath ) : Selector
outer Selector
inner Selector
start int
stop int
filePath string
return Selector

Write() public method

public Write ( TextWriter output ) : void
output System.IO.TextWriter
return void