HtmlTags.Conventions.BuilderSet.If C# (CSharp) Method

If() public method

public If ( bool>.Func matches ) : HtmlTags.Conventions.CategoryExpression
matches bool>.Func
return HtmlTags.Conventions.CategoryExpression
        public CategoryExpression If(Func<ElementRequest, bool> matches) => new CategoryExpression(this, matches);

Usage Example

Example #1
0
 public CategoryExpression If(Func <ElementRequest, bool> matches)
 {
     return(_defaults.If(matches));
 }
All Usage Examples Of HtmlTags.Conventions.BuilderSet::If