0
votes
2answers
66 views

How can I pass a parameter to a delegate callback method?

This seems really odd, so I doubt it's good practice but I'm working on an old app and I need to make some updates without totally redesigning the whole thing. Currently, I have a UIButton which has ...
0
votes
0answers
14 views

Delegate execution in Unity3d using c#

I have callbacks implements in my unity3d game in such a way that they are all nested,i.e. one callback leads to another call, whose callback leads to another call and so on upto 5 times. But the last ...
0
votes
1answer
33 views

Return parsedobject after asyncronous post request objective-c IOS

I am trying to get a parsed object from a JSON response and use in a method, When I do that normally, I can use the parsedObject after this method [self.delegate ...
1
vote
2answers
44 views

First experiment calling asynch method - Do I need ALL this code?

Never tried asynch calling with Windows Form. I cannot use the new aynch/await because I don't own recent Visual Studio/.NET. What I need is "execute an operation that request long time (populate an ...
0
votes
1answer
79 views

C# Is action.BeginInvoke(action.EndInvoke,null) a good idea?

If I want to do a "fire and forget" of some code, but still want to ensure that my memory is cleaned up (per Why does asynchronous delegate method require calling EndInvoke?), will the following ...
0
votes
0answers
94 views

how to notify to client side of asynchronous method completion in asp.net

I am new to delegates for asynchronous calling. I am using following code to call an UploadVideo method asynchronously. UploadVideoDelegate delUploadVideo; AsyncCallback objAsyncCallBack = ...
0
votes
1answer
76 views

Asynchronous calling a method

Here is my old code to call an asyn function: public class Caller { public void Calculate(CalcParameters calcParameters, string sourceApp) { AsyncCaller caller = new ...
2
votes
1answer
150 views

Session variable in delegate async function inside a webservice

I am developing my application in ASP.NET 4.5. I've created a delegate function like the follows: private delegate void CounterDelegate(List<int> temp, int id); private CounterDelegate sfd; ...
0
votes
1answer
101 views

Run a delegate asynchronously in Windows Phone

In desktop framework I can run delegate asynchronously with BeginInvoke(): Action<string> myAction; myString = "i am string"; myAction.BeginInvoke(myString, res => { ...
3
votes
1answer
108 views

How do I share an AsyncCallback with many APM BeginXXX calls?

I want to re-use my code with many APM-style async methods. Each method has a BeginXXX and an EndXXX signature pair. I want to reuse the same callback in each of the functions. I have always used ...
0
votes
1answer
64 views

At which time and in which context should I call ThreadPool.SetMinThreads

I have an ASP .NET MVC 2 - application, which calls functions of a C#-DLL. The DLL itself is multithreaded. In the worst case it uses up to 200 threads, which do not run very long. I use ...
0
votes
1answer
62 views

How to guarantee that a particular delegate will handle a RestKit response

This question is about wrapping RestKit requests in custom objects, and whether or not I can guarantee that an object sending the RestKit request will also be used as a delegate when the response is ...
1
vote
3answers
128 views

send status updates from function in C++ to C#

i have a very large function in my C++ dll which performs a lot of tasks. we are calling it from a c# wrapper and it takes about 20sec for the c++ function to complete. i want to change the way we run ...
0
votes
1answer
49 views

BeginInvoke Why is the first invoke finished first?

I was testing delegates and ive stopped on BeginInvoke and EndInvoke. I wonder what happen in this fellowing code. I though that the first begin invoke would terminate after the second since the ...
0
votes
1answer
175 views

How to use async delegate in ASP.NET MVC 2 request?

I need to execute a method in an async mode. I've tried creating a delegate, but the session is destroyed after the request is completed. This function needs to continue running after this, and be ...
0
votes
1answer
68 views

Is cleanup necessary for a delegate BeginInvoke?

Do we need to call EndInvoke() and close the wait handle after calling a delegate BeginInvoke() even when we do not need to wait for the result? Any resource leak if do not do so?
1
vote
1answer
522 views

Session Access and Async Callbacks

Ok, so I have a bunch of async web service calls that I make on the landing page of my website . I want to set the results of these calls to session so that I can use them later, but I can't because ...
1
vote
1answer
125 views

TargetException thrown while using reflection to add an event handler

I want to invoke a BackgroundWorker thread when a WebClient object calls back. The method which I target to run on this BackgroundWorker is not fixed so I need to programmatically target a specified ...
3
votes
1answer
1k views

Asynchronous delegates vs Threads

Replacing Threads (not ThreadPool Thread) with Asynchronous Delegates (Callbacks). My Scenario: Spawn a Thread/del.beginInvoke() per Client. According to me, Reasons need for Notification via ...
0
votes
0answers
330 views

How can I cancel an Asychronous request in objective-c

Hi i am using two class files called URLConnection taken from here: https://github.com/0xSina/URLConnection It’s not just a wrapper around NSURLConnection’s synchronous method using GCD What you get: ...
0
votes
0answers
106 views

Asynchronous function and Session State

In my WebService I'm trying to call an assynchronous function using delegate. The problem is that the session is lost when the function is called. Is there anyway to keep the Session state when the ...
0
votes
1answer
85 views

Lifetime of the async delegate invocation

I have the following code in my service: protected override void OnStart(string[] args) { var cleaner = new Cleaner(); Action action = cleaner.Run; action.BeginInvoke(null, null); } I'm ...
0
votes
1answer
417 views

Working Asynchronously with GUI Controls in VB.NET

I have a listbox of items that need to be processed, and I would like to process them asynchronously on a separate thread. (Never done this before). So I created a Delegate, a Callback, called the ...
0
votes
0answers
186 views

Dispatch.BeginInvoke What am i doing wrong?

I have a ViewModel which contains a QueryData method: void QueryData() { _dataService.GetData((item, error) => { if(error != null) return; ...
0
votes
2answers
529 views

Will delegate queue up all the events and execute them one by one

I am making a server-client project. Here the server makes changes in database based on the clients calls. The clients calls are asynchronous. I am invoking some delegates based on the incoming call ...
1
vote
1answer
193 views

Gui not updating properly (from async)

I have a problem that has been driving me crazy all week. I have a really simple asynchronous TCP client/server that I have created. When I receive a TCP message I want to prepend it to a textbox ...
3
votes
2answers
225 views

What is the purpose of `AsyncCallback` and `@object` in regards to delegates in .Net

I know that in C# (and VB.Net) I can create a delegate, point this at a method and then use this delegate to run my method either synchronously or asynchronously. I know how to do this. Sometimes I ...
2
votes
1answer
766 views

Passing a delegate to the WPF WebBrowser.InvokeScript method

public void ProcessResult(string result) { this.MyTextBox.Text = result; } ... this.WebBrowser.InvokeScript("jsFunctionName", ProcessResult); I need to achieve something like this. The ...
1
vote
1answer
1k views

Delegate.BeginInvoke Callback Blocking Calling Thread?

I'm not really sure where to look with this problem as I'm not particularly familiar with asynchronous programming. I have a loop which invokes a delegate's BeginInvoke method. When the delegate's ...
2
votes
1answer
127 views

delegate Multithreading EndInvoke?

This method in my .aspx file... private static string GetPageAsString(string address) { AsyncWebRequester.StartRequest(address); TimeSpan timeout = new ...
4
votes
3answers
345 views

High CPU % when using delegate

I'm running the following piece of code which uses a delegate to return an asynchronous Network Stream: static void Main(string[] args) { NetworkStream myNetworkStream; Socket socket; ...
6
votes
2answers
353 views

why we need EndInvoke() to return value of asynchronous call in delegate?

i am having a bit trouble in understanding it that BeginInvoke() method call in a delegate when asynchronously calls methods, after completion of it's tasks why can't BeginInvoke() itself return the ...
1
vote
2answers
701 views

What's the method signature for passing an async delegate?

I've recently moved back to C# from being in Objective-C land, and the async/await keywords in C# 5 look cool. But I'm still trying to get a handle on the proper syntax. I want to declare a method ...
2
votes
1answer
179 views

Why didn't I receive all emails after sending them asynchronously in C#?

I use a specific class to send email asynchronously. You can find the original class here. This class uses a delegate function to send emails : public class Email { public bool ...
-3
votes
1answer
256 views

BeginInvoke - Why isn't an InvalidOperationException exception caught by the catch block in this code when thrown by the method in the try block?

private void f() { Action<string> action = WriteLogToFile; AsyncCallback callBack = LogCallBack; action.BeginInvoke("Hello world!", callBack, action); } private void ...
2
votes
1answer
1k views

making asynchronous calls form generic handler (.ashx)

I have a form in my website which posts json to the async handler which validates the data and return back the resonse OK or error and i will make the redirect on the client based on the response give ...
1
vote
1answer
246 views

C# asynchronous functions

I am currently executing a long process asynchronously using delegates. this process could be invoked several times depending on given data (numbers of employees for example) my question is about the ...
1
vote
3answers
142 views

event or Action<> on method complete?

Presuming you have an email folder and messages in it. Each message has Body property, which needs to be loaded async and notify you when done, how would you approach this? 1 - Message.LoadBody() + ...
2
votes
2answers
526 views

Delegate.BeginInvoke()/EndInvoke() implementation

I want to know how exactly BeginInvoke/EndInvoke methods are implemented on delegates. I know they're automatically generated by the compiler and kinda special so disassemblers cannot handle them. ...
1
vote
1answer
284 views

delegate.Invoke and delegate.BeginInvoke - used on the same method, return two different results

I'm writing a software that communicates with 4 devices via serial port. One of them, Input/output module (ICP CON) has 4 input channels (DL) and 4 output channels (RL). I need to monitor status of DL ...
2
votes
1answer
496 views

How to use Tasks to simplify Delegate.BeginInvoke/Delegate.EndInvoke?

Trying to wrap my head around the Tasks class, and more specifically, the Task.Factory.FromAsync method. Currently in my code I am doing something like this: var handler = MyEvent; if (handler != ...
1
vote
0answers
70 views

Calling COM Method From UI Thread Problem

I wonder if you could help me solve my COM problem. I have a program that calls a COM method when the button is clicked. The code looks something like this: private void Send_Click(object sender, ...
4
votes
4answers
2k views

C# Asynchronous call without EndInvoke?

Take the following classes as an example. public class A { // ... void Foo(S myStruct){...} } public class B { public A test; // ... void Bar() { S myStruct = new S(); ...
0
votes
1answer
199 views

Why can't my NSOperation object receive async call back?

I subclass NSOperation to implement my operation.Let's call it MyOperation. In the implementation of MyOperation, I override the main function and inside it I create some async network stuff and set ...
1
vote
3answers
345 views

Invoking Delegate in a Console Application

I need to migrate a WinForm Application to a Console Application. In the WinForm Application, I have something like: this.Invoke(new LogResponseCallback(this.LogResponse), new object[] { ...
0
votes
2answers
264 views

iPhone - changing a delegate may cause crash for async calls?

I have a class that instanciate another class and works as a delegate for that second class. That second class is "free" and is not retained by the first one. That second class sends async HTTP ...
4
votes
3answers
341 views

Is it a best practice to call methods asynchronously by using delegates?

This msdn article is entitled "How to call a Visual C# method asynchronously". The article says "Asynchronous calls are made by using delegates" to which I reply in my head "not necessarily, that's ...
0
votes
1answer
744 views

Unhandled exception in asynchronous delegate call

I'm trying to catch unhandled exceptions from an asynchronous delegate call. The following program illustrates the issue. I get the following output: Delegate called. Unhandled exception: an ...
1
vote
1answer
118 views

Confused on using Class method with an object that has a delegate

I'm confused on Delegates. I was always under the impression that if you didn't set a delegate than it wouldn't respond to delegate callbacks. I have a crash with a Class method that releases its ...
1
vote
2answers
295 views

OK to assign one NSObject as the delegate of multiple ASIHTTPRequests?

Is it OK to assign one NSObject as the delegate of multiple, asynchronous ASIHTTPRequests? My concern is that two or more requests will call the same callback method on the delegate at the same time. ...

1 2 3