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