Ejemplo n.º 1
0
 public abstract T RouteAction <T>(UserAction <T> action) where T : ActionResponse;
Ejemplo n.º 2
0
 public override T RouteAction <T>(UserAction <T> action)
 {
     return(Current.RouteAction(action));
 }
 public override T RouteAction <T>(UserAction <T> action)
 {
     return((T) new ActionResponse(false, "Unallowable action"));
 }