private void Auto_apply_MakeDispatched(Delegate implementation)
 {
     if (DispatchedMethodAttribute.HasBeenApplied(implementation))
     {
         MakeDispatched();
     }
 }
Esempio n. 2
0
 private void Dispatch_input_port_method_call(MethodInfo miInput, Action input_call)
 {
     if (DispatchedMethodAttribute.HasBeenApplied(miInput))
     {
         _dispatcher.Process(input_call);
     }
     else
     {
         input_call();
     }
 }