Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm getting "An object reference is required for the non-static field, method, or property 'System.Windows.Threading.Dispatcher.BeginInvoke(System.Action)'" for this code.

private void ResponseCompleted(IAsyncResult result)
    {
        HttpWebRequest request = result.AsyncState as HttpWebRequest;
        HttpWebResponse response = request.EndGetResponse(result) as HttpWebResponse;

        using (StreamReader sr = new StreamReader(response.GetResponseStream()))
        {
            Dispatcher.BeginInvoke( () => {
                try
                {
                    XDocument resultsXml = XDocument.Load(sr);
                    QueryCompleted(new QueryCompletedEventArgs(resultsXml));
                }
                catch (XmlException e)
                {
                    XDocument errorXml = new XDocument(new XElement("error", e.Message));
                    QueryCompleted(new QueryCompletedEventArgs(errorXml));
                }
            });

        }
    }
}
share|improve this question
In the UI thread create a dispatcher -- Dispatcher UIDispatcher = Dispatcher.CurrentDispatcher; -- Then in the above method call BeginInvoke like this -- UIDispatcher.BeginInvoke(()=>... -- – Amsakanna Apr 8 '10 at 8:06
see this one also.. forums.create.msdn.com/forums/p/89243/534524.aspx – Mahantesh Oct 7 '11 at 4:58

2 Answers

up vote 4 down vote accepted

The error indicates that you need an instance of Dispatcher to call BeginInvoke since it is an instance method. Where you get that instance depends on where you want to dispatch a call.

Perhaps you could try using the static property Dispatcher.CurrentDispatcher to get the instance of the dispatcher for the current thread and then call BeginInvoke on that instance. Either that or somehow get a dispatcher instance to your method from the particular thread you want to call to.

share|improve this answer
Given this is an async callback, and assuming he actually wants to be running the invoked code on the UI thread, Dispatcher.CurrentDispatcher won't actually do what he needs. But you're right under other circumstances (or if I've guessed wrong about his requirements). – itowlson Apr 8 '10 at 1:00
@itowlson: why won't it work? – Amsakanna Apr 8 '10 at 8:00
1  
Because if this is an async callback, it's running on a thread pool thread, not the UI thread. So Dispatcher.CurrentDispatcher will create a new Dispatcher for the calling thread, i.e. the thread pool thread. And so the invoked code will run on that newly created Dispatcher's thread, i.e. the calling thread, i.e. the thread pool thread -- not the UI thread. (Of course, my assumptions may be wrong here.) – itowlson Apr 8 '10 at 8:28
I actually ended up taking a different route. I used the AsyncOperation/AsyncOperationManager to fire the QueryCompleted event on the UI thread. This way I don't need the ugly dispatcher code in my clean viewmodels. – cmaduro Apr 9 '10 at 3:37

Things have changed a bit since the last answer was posted for this question. System.Windows.Threading.Dispatcher.BeginInvoke is now Deployment.Current.Dispatcher.BeginInvoke

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.