Tagged Questions
The invoke tag has no wiki summary.
84
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 ...
69
votes
8answers
86k views
Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on
I have a scenario. (Windows Forms, C#, .NET)
There is a main form which hosts some user control.
The user control does some heavy data operation, such that if I directly call the Usercontrol_Load ...
40
votes
11answers
68k views
How do I invoke a java method when given the method name as a string?
If I have two variables:
Object obj;
String methodName = "getName";
Without knowing the class of obj, how can I call the method identified by methodName on it?
The method being called has no ...
17
votes
2answers
459 views
The uncatchable exception, pt 2
Update: I've filed a bug report on Microsoft Connect: https://connect.microsoft.com/VisualStudio/feedback/details/568271/debugger-halting-on-exception-thrown-inside-methodinfo-invoke#details
If you ...
14
votes
5answers
23k views
Using C# MethodInvoker.Invoke() for a GUI app… is this good?
Using C# 2.0 and the MethodInvoker delegate, I have a GUI application receiving some event from either the GUI thread or from a worker thread.
I use the following pattern for handling the event in ...
13
votes
9answers
651 views
Cleaning up code littered with InvokeRequired
I know that when manipulating UI controls from any non-UI thread, you must marshal your calls to the UI thread to avoid issues. The general consensus is that you should use test InvokeRequired, and if ...
13
votes
1answer
2k views
Ensuring that things run on the UI thread in WPF
I'm building a WPF application. I'm doing some async communication with the server side, and I use event aggregation with Prism on the client. Both these things results in new threads to be spawned ...
13
votes
5answers
1k views
What's wrong with calling Invoke, regardless of InvokeRequired?
I've seen the common setup for cross threading access to a GUI control, such as discussed here:
...
13
votes
4answers
8k views
Best Way to Invoke Any Cross-Threaded Code?
I know that this question has been asked before, but I'm looking for a way to:
streamline the creation of safe cross-threaded code.
reuse this code in any situation (no Windows Forms references).
...
12
votes
2answers
2k views
Is it appropriate to extend Control to provide consistently safe Invoke/BeginInvoke functionality?
In the course of my maintenance for an older application that badly violated the cross-thread update rules in winforms, I created the following extension method as a way to quickly fix illegal calls ...
12
votes
5answers
9k views
WPF Dispatcher.Invoke 'hanging'
I have a somewhat complex WPF application which seems to be 'hanging' or getting stuck in a Wait call when trying to use the dispatcher to invoke a call on the UI thread.
The general process is:
...
11
votes
3answers
255 views
Why using Action in this code?
Hi
I see following code:
void UpdateMessage (string message)
{
Action action = () => txtMessage.Text = message;
this.Invoke (action);
}
Why using Action and then invoke action here? Why ...
11
votes
6answers
2k views
C# Multithreading — Invoke without a Control
I am only somewhat familiar with multi-threading in that I've read about it but have never used it in practice.
I have a project that uses a third party library that shares the status of an input ...
11
votes
4answers
11k views
Dynamically invoke properties by string name using VB.NET
I'm currently working on a project where a section of the code looks like this:
Select Case oReader.Name
Case "NameExample1"
Me.Elements.NameExample1.Value = oReader.ReadString
....
...
9
votes
1answer
209 views
How does delegate.Invoke work?
If I create a delegate in my code like :
delegate void dostuff (string o);
This generates a class that derives from System.MulticastDelegate which implements three methods - Invoke, BeginInvoke and ...
9
votes
3answers
4k views
How to use Reflection to Invoke an Overloaded Method in .NET
Is there a way to Invoke an overloaded method using reflection in .NET (2.0). I have an application that dynamically instantiates classes that have been derived from a common base class. For ...
8
votes
7answers
2k views
What's wrong with my cross-thread call in Windows Forms?
I encounter a problem with a Windows Forms application.
A form must be displayed from another thread. So in the form class, I have the following code:
private delegate void DisplayDialogCallback();
...
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
2answers
97 views
Curious about the implementation of Control.Invoke()
What exactly does Control.Invoke(Delegate) do to get the delegate to run on the GUI thread? Furthermore, Its my understanding that invoke will block until the invoked function its done. How does it ...
6
votes
2answers
865 views
Invoking methods with optional parameters through reflection
I've run into another problem using C# 4.0 with optional parameters.
How do I invoke a function (or rather a constructor, I have the ConstructorInfo-object and I know it doesn't require any ...
6
votes
9answers
2k views
Avoid calling Invoke when the control is disposed
I have the following code in my worker thread (ImageListView below is derived from Control):
if (mImageListView != null &&
mImageListView.IsHandleCreated &&
...
6
votes
4answers
2k views
Run code on UI thread without control object present
I currently trying to write a component where some parts of it should run on the UI thread (explanation would be to long).
So the easiest way would be to pass a control to it, and use ...
6
votes
10answers
1k views
Is there a general “backend” library for Java reflection
I'm currently working with a specialized, interpreted, programming language implemented in Java. As a very small part of the language, I'd like to add the ability to make calls into Java. Before I ...
5
votes
5answers
70 views
how to use Invoke method in a file of extensions/methods?
Well, I'm writing a file of extensions/method useful to strings,label,linklabels,class etc.
but, I have a problem. I have an showMessage() method that change the Text of label, works fine. But I ...
5
votes
4answers
219 views
Speeding up Reflection Invoke C#/.NET
There are plenty of posts on speeding up reflection invokes, examples here:
Speeding up Reflection API with delegate in .NET/C#
...
5
votes
5answers
3k views
How do I invoke a private static method using reflection (Java)?
I would like to invoke a private static method. I have its name. I've heard it can be done using Java reflection mechanism. How can I do it?
EDIT: One problem I encountered when trying to invoke the ...
5
votes
3answers
694 views
How to call a method stored in a HashMap? (Java)
I have a list of commands (i, h, t, etc) that the user will be entering on a command line/terminal Java program. I would like to store a hash of command/method pairs:
'h', showHelp()
't', teleport()
...
5
votes
5answers
745 views
C#: deadlock when invoking the UI thread from a worker thread
I have a deadlock when I invoke the UI thread from a worker thread. Indeed, the worker thread is blocked on the invoke line:
return (ucAvancementTrtFamille)mInterfaceTraitement.Invoke(d, new object[] ...
5
votes
1answer
1k views
Parameter count mismatch with Invoke?
The code block below results in the error: TargetParameterCountException was unhandled by user code. Parameter count mismatch.
public void AddListViewItem(string[] Data)
{
if ...
5
votes
6answers
314 views
Which C# assembly contains Invoke?
Alternate question: Why is VS10 so keen to complain about Invoke?
In my continuing quest to make my app work become the worlds best C# programmer, I have decided that threads are a Good Thing™.
MSDN ...
5
votes
2answers
406 views
Why does VS2010 always break on exception from MethodInfo.Invoke?
I have a try/catch around a MethodInfo.Invoke(o,null), and VS2010 is set to never break on Exceptions, but unfortunately the debugger continues to break inside the Invoked method. The method is ...
5
votes
3answers
2k views
How to get PowerShell to wait for Invoke-Item completion?
How do I get PowerShell to wait until the Invoke-Item call has finished? I'm invoking a non-executable item, so I need to use Invoke-Item to open it.
5
votes
3answers
117 views
Checking whether an `object[] args` satisfies a Delegate instance?
I have the following method signature:
public static void InvokeInFuture(Delegate method, params object[] args)
{
// ...
}
The delegate and the arguments are saved to a collection for future ...
5
votes
4answers
792 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
3answers
6k views
Calling ASP.net Web Service from C# Application
I have a question. How can i invoke a web service and get the result from a C# desktop application. I am making a desktop app and I want it to be able to connect to my online ASP.net web services. How ...
4
votes
1answer
126 views
background worker delegate & invokers
I have a background worker that does many GUI interactions, but my problem is that all of those objects are in the main thread (as I know), and I need to invoke all of the all the time, ...
4
votes
2answers
91 views
MethodInvoke delegate or lambda expression
What is the difference between the two?
Invoke((MethodInvoker) delegate {
checkedListBox1.Items.RemoveAt(i);
checkedListBox1.Items.Insert(i, temp + validity);
...
4
votes
3answers
126 views
Why isn't Invoke via Delegate built into .NET
I understand that .NET is multi-threaded and that is a good thing, but I continually run into issues when I have a background worker for example that is updating some control on my form and I have to ...
4
votes
1answer
163 views
c#: getting at the queue of delegates in a controls invocation list
Suppose I were to take a treeview and add some nodes, in a BFS manner, but also in a thread safe way.
treeView.Invoke((MethodInvoker)delegate{treeView.Nodes.Add(someNode);});
Later I'd like to add ...
4
votes
4answers
13k views
What could cause java.lang.reflect.InvocationTargetException?
Well, I've tried to understand and read what could cause it but I just can't get it:
I have somewhere in my code this:
try{
..
m.invoke(testObject);
..
} catch(AssertionError e){
...
} ...
4
votes
2answers
294 views
Speeding up realtime Gui updates from a thread
This is a technique I've used for years to receive network data and use it in my GUI (dialog, form etc).
public delegate void mydelegate(Byte[] message);
public ReceiveEngineCS(String ...
4
votes
2answers
345 views
New form on a different thread
So I have a thread in my application, which purpose is to listen to messages from the server and act according to what it recieves.
I ran into a problem when I wanted to fire off a message from the ...
4
votes
1answer
308 views
Calling Invoke/BeginInvoke from a thread
I have a C# 2.0 application with a form that uses a class that contains a thread.
In the thread function, rather than call the event handler directly, it is invoked. The effect is that the owning ...
4
votes
4answers
362 views
Winforms multithreading: Is creating a new delegate each time when invoking a method on the UI thread needed?
I want to invoke a method that manipulates a control on the UI thread. My code works and I want to optimize. I am referring to this resource on MSDN.
According to there, we should do
public delegate ...
4
votes
2answers
139 views
Recursive Invocation: Poor Style?
Below is a rather frightening pattern I sometimes use as a lazy way to do simple invocation. This code makes me feel slightly guilty, even though I'm not sure why. Is this horrifying? Reasonable? ...
4
votes
3answers
377 views
How to invoke a delegate with a null parameter?
I get a null exception if I try to pass a null parameter to a delegate during an invoke. Here's what the code looks like:
public void RequestPhoto()
{
...
4
votes
5answers
2k views
wpf how to return a value with dispatcher.invoke
Anyone knows how to return a value from Dispatcher.Invoke in WPF? I want to return the selected index for a combobox.
Thanks!
4
votes
3answers
1k views
How does the event dispatch thread work?
With the help of people on stackoverflow I was able to get the following working code of the simples GUI countdown (it just displays a window counting down seconds). My main problem with this code is ...
4
votes
3answers
2k views
Using NSProxy and forwardInvocation:
I would like to code a proxy that forwards method invocations to another object over TCP without NSConnection and NSDistanceObject stuff. What I want is my own protocol.
The problem is that ...