Exemplo n.º 1
0
 /// <summary>
 ///   The first ActionCall in this BehaviorChain.  Can be null.
 /// </summary>
 /// <returns></returns>
 public ActionCall FirstCall()
 {
     return Calls.FirstOrDefault();
 }
Exemplo n.º 2
0
        public Type ActionOutputType()
        {
            var call = Calls.FirstOrDefault();

            return(call == null ? null : call.OutputType());
        }