¡@

Home 

c# Programming Glossary: polling

What is AsyncCallback?

http://stackoverflow.com/questions/1047662/what-is-asynccallback

buffer Other techniques are wait until done and polling. Wait Until Done Model The wait until done model allows you.. handles. result.AsyncWaitHandle.WaitOne Polling Model The polling method is similar with the exception that the code will poll..

FileSystemWatcher vs polling to watch for file changes

http://stackoverflow.com/questions/239988/filesystemwatcher-vs-polling-to-watch-for-file-changes

vs polling to watch for file changes I need to setup an application that.. or on a network drive. Would the FileSystemWatcher or polling on a timer would be the best option. I have used both methods.. your user the ability to refresh for changes instead of polling. I would combine this with a file system watcher. share improve..

Question about terminating a thread cleanly in .NET

http://stackoverflow.com/questions/3632149/question-about-terminating-a-thread-cleanly-in-net

new cancellation mechanisms in the TPL This is similar to polling a stopping flag except that it uses the new cancellation data..

A super-simple MVVM-Light WP7 sample?

http://stackoverflow.com/questions/3655422/a-super-simple-mvvm-light-wp7-sample

A Model that invokes a SOAP based web service regularly polling to get the latest value assume the SOAP service returns a boolean..

How can I make a background worker thread set to Single Thread Apartment?

http://stackoverflow.com/questions/4685237/how-can-i-make-a-background-worker-thread-set-to-single-thread-apartment

In this part of the application I am working on a polling server. It works by constantly polling the web server to determine.. I am working on a polling server. It works by constantly polling the web server to determine when a new automated test should.. nightly automated runs of our GUI application . When the polling server sees a request it downloads all the information necessary..

C# thread safety with get/set

http://stackoverflow.com/questions/505515/c-sharp-thread-safety-with-get-set

get return property set property value I want a polling thread to be able to query that property. I also want the thread..

MemoryCache Strangeness

http://stackoverflow.com/questions/6895956/memorycache-strangeness

is fired every x seconds and is also dependent on the polling interval and other undocumented variables. However even taking.. Convert.ToString 49 set here CacheSettings.Add pollingInterval Convert.ToString 00 00 10 MemCache new MemoryCache TestCache..

How can a Metro app in Windows 8 communicate with a backend desktop app on the same machine?

http://stackoverflow.com/questions/7465517/how-can-a-metro-app-in-windows-8-communicate-with-a-backend-desktop-app-on-the-s

etc but that is a fairly crude hack that necessitates polling and is visible to the user. Pavel Minaev commenting on this..

Registry Watcher C#

http://stackoverflow.com/questions/826971/registry-watcher-c-sharp

is that it be a better solution than what I have now polling every 20 seconds and comparing the registry value with the last..

How to detect a process start & end using c# in windows?

http://stackoverflow.com/questions/8455873/how-to-detect-a-process-start-end-using-c-sharp-in-windows

process share improve this question To do this without polling requires WMI. This is well supported in .net and you can use..

.NET Events for Process executable start

http://stackoverflow.com/questions/848618/net-events-for-process-executable-start

when a process that isn't already running starts...without polling all the running processes c# .net events process share improve.. with them to prevent issues. You could also change the polling value in the queries if you need the event to be raised more..

asynchronously GetForegroundWindow via SendMessage or something?

http://stackoverflow.com/questions/8840926/asynchronously-getforegroundwindow-via-sendmessage-or-something

user changes focus I keep thinking I may just have to do polling every 1 second and call GetForegroundWindow but I really don't..

SpinWait vs Sleep waiting. Which one to use?

http://stackoverflow.com/questions/9719003/spinwait-vs-sleep-waiting-which-one-to-use

of 10000ms or Is it more efficient to use Thread.Sleep polling for the same condition For example something along the lines.. detect the thing becoming true rather than passively polling for it having become true this could be any kind of wait handle..