コード例 #1
0
ファイル: MethodHandler.cs プロジェクト: qcjxberin/ec
 public MethodHandler(object controller, System.Reflection.MethodInfo method, IApplication application)
 {
     mHandler = new IKende.MethodHandler(method);
     Info = method;
     Controller = controller;
     LoadFilter(controller, method, application);
     UseThreadPool = IKende.IKendeCore.GetMethodAttributes<EC.ThreadPoolAttribute>(method, false).Length > 0;
 }
コード例 #2
0
 public MethodHandler(object controller, System.Reflection.MethodInfo method, IApplication application)
 {
     mHandler   = new IKende.MethodHandler(method);
     Info       = method;
     Controller = controller;
     LoadFilter(controller, method, application);
     UseThreadPool = IKende.IKendeCore.GetMethodAttributes <EC.ThreadPoolAttribute>(method, false).Length > 0;
 }