Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider the following class:

public class Event<T>
{
    public delegate void Handler<t>(t msg);
    private event Handler<T> E;

    public void connect(Delegate handler) {
        E += delegate(T msg) {
            object target = handler.Target;

            if (Invokable(target) {
                target.BeginInvoke(handler, new object[] { msg });
            }
        };

    }

    public void emit(T msg) {
        if ( E != null ) {
            E(msg);
        }
    }

    private static bool Invokable(object o) {
                // magic
    }
}

How do I implement Invokable(), and what else do I need for this code to compile? The only other problem that I know of is the target.BeginInvoke call, since target is object.

share|improve this question
What is the Invokable method supposed to tell about the object o (it is a static method, so it cannot access anything else)? – Tomas Petricek Jun 18 '10 at 12:24
why do you reinvent delegates? – Andrey Jun 18 '10 at 12:25
@Tomas: whether or not o is a Form, because then I need thread safety magic. – György Andrasek Jun 18 '10 at 12:27
Surely this will only work for WinForms controls? You wouldn't be passing a Dispatcher through to this would you? – David Neale Jun 18 '10 at 12:36

1 Answer

up vote 2 down vote accepted

If you want to Invoke a System.Windows.Forms.Control

static bool Invokable(object o) {
  bool res = false;
  if(o is System.Windows.Forms.Control) {
   res = ((System.Windows.Forms.Control)o).InvokeRequired;
 }
 return res;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.