Tagged Questions

0
votes
2answers
64 views

Threading and Sockets

I have the following: ThreadStart startThread = delegate { mySocket.StartListen(); }; mySocket is now looping on a Listen() when I: new Thread(st …
2
votes
4answers
731 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 n …
0
votes
6answers
561 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 …
0
votes
2answers
103 views

Invoke with timeout

We have some code running in a background thread which needs to pop a dialog or some other user interaction, so we do the usual Invoke call on to the UI thread: Control.Invoke(Som …
0
votes
1answer
90 views

Implementing timeout for calling generic function with parameters.

I am trying to get my head around the use of the Action delegate type for use in forcing a timeout when methods called in a 3rd party COM dll hang up. After much searching I find t …
4
votes
3answers
153 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 neccesa …
0
votes
0answers
40 views

What would be a good naming guideline to use in Asynchronous Programming Model?

Hello all, I am doing some refactoring on a piece of code to transform all blocking operations to their async counterparts. My code is in C# and is doing an UPnP query followed by …
2
votes
3answers
359 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 textb …
2
votes
2answers
998 views

Winforms to WPF conversion: BeginInvoke to what?

Hi all, 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 …
3
votes
4answers
412 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 o …
1
vote
1answer
235 views

CastException attempting to call Action<KeyValuePair<>> delegate asynchronously

I can't seem to figure out why I am getting an InvalidCastException running the following code: var item = new KeyValuePair<string, string>("key", "value"); Action<KeyVa …
6
votes
3answers
626 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 ConsoleApplicat …
11
votes
3answers
5k 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 obje …