public static Commander RegisterMethod(this Commander commander, MethodInfo method) { commander.Register(CommandBuilder.FromMethod(method)); return(commander); }
public static Commander RegisterExpression(this Commander commander, LambdaExpression lambda) { return(commander); }
public static Commander RegisterStaticMethodsOf <T>(this Commander commander) { return(commander.RegisterStaticMethodsOf(typeof(T))); }
public static Commander RegisterExpression <TDelegate>(this Commander commander, Expression <TDelegate> expression) { return(commander.RegisterExpression((LambdaExpression)expression)); }