0
votes
How to spread tcplistener incoming connections over threads in .NET?
There's a great example in the O'Reilly C# 3.0 Cookbook. You can download the accompanying source from [http://examples.oreilly.com/9780596516109/CSharp3_0CookbookCodeRTM.zip][1]
…
4
votes
SharePoint and thread safety
There are much worse pitfalls in the SharePoint OM than just plain old thread safety. Pay particular attention to working with objects retrieved from properties. You should always keep a p …
1
vote
How to read textbox.Text value from another thread in WPF?
There is no "quick hack" for reading a GUI object's values from a differing thread than the one that created it. WPF will just not allow you to do it all. Windows Forms would complain occassionally …
0
votes
asp.net update UI using multi-thread
You would have to use javascript/jquery to poll the server for changes. This is one of the more unfortunate side-effects of all this fancy-schmancy jquery/ajax stuff: people forget that the browser …
4
votes
How to wait on WaitHandle without message pumping?
WaitForSingleObject or WaitForMultipleObjects are non-pumping waits; use p/invoke.
[DllImport("kernel32", SetLastError=true, ExactSpelling=true)]
public static extern Int32 WaitForS …
0
votes
OpenNetCF FTP class multithreading question
The FTP object is definitely running on its own thread. How do I know? This line:
m_ftp.BeginConnect(user.Text, password.Text);
This is an asynchronous method. Onc …
0
votes
powershell / runspace in a thread
Can you give us the full stacktrace for the ObjectDisposedException?
…
0
votes
Return values from two long running methods, using threads
Try this on MSDN: "Asynchronous programming using delegates."
http://msdn.microsoft.com/en-us/library/22t547yb …
