If() public method

public If ( bool>.Func matches ) : HtmlTags.Conventions.CategoryExpression
matches bool>.Func
return HtmlTags.Conventions.CategoryExpression
Example #1
0
 public CategoryExpression If(Func <ElementRequest, bool> matches)
 {
     return(_defaults.If(matches));
 }
Example #2
0
 public CategoryExpression <T> If(Func <T, bool> matches)
 {
     return(_defaults.If(matches));
 }