Esempio n. 1
0
        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);
            }
        }
Esempio n. 2
0
 public string Text(BehaviorChain chain)
 {
     Type inputType = chain.ActionInputType();
     return inputType == null ? " -" : "{0} ({1})".ToFormat(inputType.Name, inputType.FullName);
 }