Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

85
votes
4answers
33k views

What's the difference between Invoke() and BeginInvoke()

Just wondering what the difference between BeginInvoke() and Invoke() are? Mainly what each one would be used for. EDIT: What is the difference between creating a threading object and calling ...
12
votes
3answers
781 views

Must every BeginInvoke be followed by an EndInvoke?

This page in the MS documentation, covering asynchrony in Windows Forms applications, states: You can call EndInvoke to retrieve the return value from the delegate, if neccesary, but this is not ...
8
votes
5answers
2k views

Invoke and BeginInvoke

Greetings, I am developing some application in C#. At the moment I'm dealing with threading and I have a question that I have in my mind. What is the difference between Invoke and BeginInvoke? I read ...
7
votes
3answers
1k views

Invoke() and BeginInvoke() behaving differently when executing an overridable method via a delegate

Can anyone tell me why this code behaves the way it does? See comments embedded in the code... Am I missing something really obvious here? using System; namespace ConsoleApplication3 { public ...
6
votes
1answer
188 views

Call BeginInvoke on MulticastDelegate?

According to Jon Skeet, "You can only call BeginInvoke on a delegate which has a single target invocation." Why is that? What's the real reason? Note: For clarification (and because I made this ...
6
votes
2answers
2k views

Dispatcher.BeginInvoke: Cannot convert lambda to System.Delegate

I'm trying to call System.Windows.Threading.Dispatcher.BeginInvoke. The signature of the method is this: BeginInvoke(Delegate method, params object[] args) I'm trying to pass it a Lambda instead of ...
6
votes
8answers
502 views

Why is my BeginInvoke method not async?

In order to avoid freezing of GUI, I wanted to run method connecting to DB asynchronously. Therefore I have written this: DelegatLoginu dl = ConnectDB; IAsyncResult ...
5
votes
7answers
545 views

Is Delegate.EndInvoke() really necessary?

I've read a couple of forums and even a stackoverflow question or two saying that Delegate.EndInvoke is necessary when using Delegate.BeginInvoke. Many of the articles I've read talking about using ...
5
votes
1answer
479 views

Understanding Thread/BeginInvoke? [beginner]

Consider the code: class Work { public void DoStuff(string s) { Console.WriteLine(s); // .. whatever } } class Master { private readonly Work work = new Work(); ...
5
votes
4answers
535 views

Performance implications of BeginInvoke

I've inherited code where BeginInvoke is called from the main thread (not a background thread, which is usually the pattern). I am trying to understand what it actually does in this scenario. Does ...
5
votes
4answers
794 views

Will multiple Control.BeginInvoke/Invoke calls execute in order?

I need to know whether Control.BeginInvoke and Control.Invoke calls will execute in the order they are called. I have the following scenario: UI thread is blocked WCF thread calls ...
5
votes
4answers
2k views

Do I need to call EndInvoke after a timeout?

On a web page, I am calling a third party who does not allow me to set timeout programatically. I call BeginInvoke and use the AsyncWaitHandle.WaitOne to wait a specified amount of time. If the call ...
4
votes
3answers
146 views

Asyncronous Invoking - Is EndInvoke required? [closed]

Possible Duplicates: Must every BeginInvoke be followed by an EndInvoke? Is EndInvoke() optional, sort-of optional, or definitely not optional? I've got a multithreaded application, and ...
4
votes
3answers
277 views

How to Unit Test BeginInvoke on an Action

I am looking for a way to test BeginInvoke on an Action method, since the method runs on a background thread there is no way of knowing when it actually completes or calls callback method. I am ...
4
votes
3answers
726 views

Delegate.BeginInvoke Delay

Sometimes when BeginInvoke is invoked, it takes more than one second to execute the delegate method. What could be the reasons for the delay? I get this issue 1 or 2 times a day in an application ...
4
votes
2answers
6k views

Winforms to WPF conversion: BeginInvoke to what?

Here's my old code from WinForms: private void ValueChanged(double inValue1, double inValue2) { //only manual mode for this driver, so that's easy. if (ValueLabel.InvokeRequired) ...
4
votes
4answers
6k views

System.Windows.Threading.Dispatcher and WinForms?

Does a System.Windows.Threading.Dispatcher work on the UI-thread of a WinForms application? If yes, why? It is coming from WindowsBase.dll which seems to be a WPF component. If not, how can I invoke ...
3
votes
3answers
122 views

When using Parallel BeginInvoke is working while Invoke is not - c# 4.0

When i use invoke inside AddListBoxItem function as seen below software become unreponsive and frozen but if i use BeginInvoke it works. Why is that happening ? visual studio 2010 , C# 4.0 private ...
3
votes
3answers
181 views

Control.Invoke() and Control.BeginInvoke() - Where are the past parameters stored? How is it disposed?

I have done a lot of reading about Control.Invoke and Control.BeginInvoke and understand that Invoke is like SendMessage() and BeginInvoke is like PostMessage(), but I do not understand where the ...
3
votes
3answers
223 views

A threading problem where mono hangs and MS.Net doesn't

I'm testing my app with mono in prevision of a Linux port, and I have a threading problem. I initially considered pasting 3000 code lines here, but finally I've devised a small minimal example ;) You ...
3
votes
3answers
423 views

Does BeginInvoke() run a separate thread?

In my WPF application, I want to do some work in a non-UI thread so as to avoid the UI from become not-responding. For that I did this: var caller = new ...
3
votes
1answer
118 views

Is there a variant of Control.BeginInvoke which works before/after the handle is destroyed?

I have a control which displays the state of an underlying asynchronous object. The object raises events, which arrive at the form, where they are essentially queued and eventually called using ...
3
votes
4answers
927 views

Problems related to showing MessageBox from non-GUI threads

I'm working on a heavily data-bound Win.Forms application where I've found some strange behavior. The app has separate I/O threads receiving updates through asynchronous web-requests which it then ...
3
votes
3answers
595 views

Why use BeginInvoke here?

I am looking into someone else's code and do not have much experience with anything to do with multi-threading. I came across this line of code: BeginInvoke((MethodInvoker)delegate() { ...
3
votes
6answers
7k views

Anonymous method as parameter to BeginInvoke?

Why can't you pass an anonymous method as a parameter to the BeginInvoke method? I have the following code: private delegate void CfgMnMnuDlg(DIServer svr); private void ConfigureMainMenu(DIServer ...
2
votes
2answers
61 views

Why is Visual Studio 2010 telling me “'System.Delegate' does not contain a definition for 'EndInvoke'”?

Why is Visual Studio 2010 telling me "'System.Delegate' does not contain a definition for 'EndInvoke'" when I call job.Delegate.EndInvoke()? How do I fix it? Note that it likes BeginInvoke() just ...
2
votes
1answer
57 views

WPF BeginInvoke and EntityFramework

I have a search through database. Search works in separate thread. When entity is found I have to show it and some of related data into WPF UI. I use EntityFramework. Main idea of search process is: ...
2
votes
1answer
71 views

Decoupling caller from callee in C# using delegate/BeginInvoke

In C# I have a hierarchy of classes that perform actions that could potentially take a long time. For this reason, I implemented a decoupling/callback mechanism so the caller is not blocked, but is ...
2
votes
2answers
182 views

Why use Dispatcher.BeginInvoke?

I have seen (and read) about using Dispatcher.BeginInvoke to ensure that UI updates occur on the UI thread. I understand this reasoning. But i have seen examples where in the view code-behind, ...
2
votes
2answers
186 views

Mulitthreading problem with BeginInvoke, EndInvoke?

I have a client application, that displays realtime values. The values are provided through a DDE-Advise. These realtime values are moving axis of a cnc-machine. So there are about 100 advises per ...
2
votes
2answers
541 views

Backgroundworker/Control.BeginInvoke() freezing UI

I have some code which executes a windows svc (another process) and updates the UI at the same time. The calls use BeginInvoke, like so: Install.BeginInvoke((MethodInvoker) delegate { Install.Enabled ...
2
votes
3answers
238 views

When is invoke required on GUI objects?

Using C# Windows.Forms, do the methods Invalidate(), Refresh(), etc. have to be run on the main/GUI thread (require Invoke/BeginInvoke)? How about changes to members of a GUI object such as ...
2
votes
2answers
2k views

Two questions about AsyncCallback and IAsyncResult pattern

Two questions on the callback pattern with AsyncCallback and IAsyncResult. I changed the question with a code example: using System; using System.Collections.Generic; using System.Text; namespace ...
2
votes
1answer
208 views

Wait until a delegate is called

I have an asynchronous class with a StartProcessing() method, that raises an int ResultReady() event when it has finished processing. StartProcessing() takes very little time. I want to call this ...
2
votes
1answer
287 views

Can I use BeginInvoke with a MulticastDelegate?

I want to raise a series of events from my library class, but I'm worried that some event subscribers will be rude and take a long time to process some events, thus blocking the thread that is raising ...
2
votes
1answer
669 views

VB.Net: Understanding the way Application.Run() works

Hans Passant gave me a great answer here, so I thought of asking for more details to try to understand the way Application.Run() works. As far as I understand from the docs, it seems that ...
2
votes
3answers
238 views

Error on invoke when the form has closed already

I am trying to display some information on a grid queried from a sql server. The data gathering can take about 10 seconds so I don't want to lock the UI thread. I currently have code like: ...
2
votes
1answer
96 views

BeginInvoke not invoking the target method in Release build

I have a method, which I wish to execute on the UI message pump and thus do the following: private void SomeMethod() { BeginInvoke(new MethodInvoker(MethodToInvoke)); } private void ...
2
votes
2answers
226 views

Better time-out detection for synchronous operations

I need a way to perform some action synchronously which should complete in half a second, but might just hang around for minutes. If it times out I don't care about the result. Here's the I'm doing it ...
2
votes
2answers
3k views

Delegate, BeginInvoke. EndInvoke - How to clean up multiple Async threat calls to the same delegate?

I've created a Delegate that I intend to call Async. Module Level Delegate Sub GetPartListDataFromServer(ByVal dvOriginal As DataView, ByVal ProgramID As Integer) Dim dlgGetPartList As ...
2
votes
2answers
734 views

Problem with BeginInvoke (the delegate does not perfom any action)

hope you're well. I'm facing a curious problem with BeginInvoke and I really really need your help ! I have a class Reporting which contains multiple instances of type Report Class Reporting : ...
2
votes
3answers
1k views

How do I delegate an AsyncCallback method for Control.BeginInvoke? (.NET)

Is it possible to use Control.BeginInvoke in anything other than a "fire & forget" manner? I want to change the following request to delegate a callback method so that i can do something when each ...
2
votes
3answers
2k views

UI still non responsive after using control.begininvoke

Hi i've made a C# winforms application. Now i have a form which has lots of buttons, which call huge number crunching functions whose output i update in a textbox. I call the textbox.begininvoke() ...
1
vote
3answers
65 views

Reasons that Control.BeginInvoke would not execute a delegate?

Overview Are there explanations for Control.BeginInvoke() to not execute a delegate that it is passed? Code Sample We have adopted the following pattern in our Winforms applications to safely ...
1
vote
3answers
74 views

How to return T value from BeginInvoke?

I want to write a class to simplify the asynchronous programing, like string s = mylib.BeginInvoek(test,"1"); here is my code: public T BeginInvokeExWithReturnValue<T>(Func<T> ...
1
vote
1answer
56 views

Convert BeginInvoke Code From Winforms To Wpf

I have found out that ISynchronizeInvoke cannot be used in WPF after having tried to convert the following code unsuccessfully. Can anybody help? private static void EVENT_R(Delegate @event, object[] ...
1
vote
2answers
74 views

C# Cancelling asynch thread immediately

I start a thread when pressing on start button which start a delay timer and then show a messageBox dialog. Now, I'm trying to stop this thread, but I can't find a way for that, except add a flag ...
1
vote
1answer
64 views

Is it possible to figure out when all Control.BeginInvoke(s) have been completed?

In my current project I'm taking a command prompt and pretty much displaying it on a richTextBox based on an input typed in a textBox and a button is pressed. See Having trouble with Process class ...
1
vote
1answer
219 views

ASP.Net Async Page with Action.BeginInvoke

I'm trying to write an async page in asp .net which runs a function in a different thread. The problem in the following code, is that when I debug it, the function EndAsyncOperation is never called. ...
1
vote
1answer
176 views

C# ThreadPool or BeginInvoke without EndInvoke

On the net there a very different opinions on how to implement a fire and forget pattern. Some say that it is no issue to call BeginInvoke without calling EndInvoke if one has to implement a ...

1 2 3