Example #1
0
        //TODO add cache support

        internal static void Process(List <string> executionHandlers, HttpContext context)
        {
            if (executionHandlers == null || executionHandlers.Count == 0)
            {
                return;
            }

            foreach (string typeName in executionHandlers)
            {
                IExecutionHandler handler = InstanceHelper.Create <IExecutionHandler>(typeName);

                handler.Process(context);
            }
        }