RespondsTo() public abstract method

Does this layout rule respond to the given section identifier?
public abstract RespondsTo ( string id ) : bool
id string
return bool
Beispiel #1
0
 public override bool RespondsTo(string sectionId)
 {
     return(_id == sectionId || _centered.RespondsTo(sectionId));
 }