Exemple #1
0
 public static FinalFunction operator *(RouteGlue state, Func<object, object> other)
 {
     var function = new FinalFunction { Method = state.Method, Function = other };
     return function;
 }
Exemple #2
0
 public static FinalFunction operator *(RouteGlue state, Func<dynamic, object> other)
 {
     var function = new FinalFunction(other, new MethodFilter(state.Method));
     return function;
 }
Exemple #3
0
        public static FinalFunction operator *(RouteGlue state, Func <dynamic, object> other)
        {
            var function = new FinalFunction(other, new MethodFilter(state.Method));

            return(function);
        }