public void WriteBody(BehaviorChain chain, HtmlTag row, HtmlTag cell) { Type inputType = chain.ActionInputType(); if (inputType == null) { cell.Text(" -"); } else { cell.Text(inputType.Name).Title(inputType.AssemblyQualifiedName); } }
public string Text(BehaviorChain chain) { Type inputType = chain.ActionInputType(); return inputType == null ? " -" : "{0} ({1})".ToFormat(inputType.Name, inputType.FullName); }