Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
3k views

What is a proper implementation of the IAsyncResult interface?

I'm looking into adding some flexibility to a class that I've created which establishes a connection to a remote host and then performs an exchange of information (a handshake). The current ...
6
votes
2answers
169 views

OK to do heavy processing in async callbacks?

Is it OK to do heavy processing in .NET's asynchronous callbacks, hogging them for multiple seconds before returning? Or am I depriving the OS / the runtime of important resources? For example, ...
4
votes
1answer
116 views

Process Model minFreeThreads clarification

I have been modifying the .net process model to solve some throughput issues. I've read a lot of the articles out there but need some clarification on the minFreeThreads property. Does raising this ...
4
votes
1answer
1k views

Reactive Extensions (Rx) and asynchronous class

I've read in this post: "The joy of Rx: The event-based asynchronous pattern vs IObservable" that the use of EBAP is discourage. What is the best way to design an asynchronous component with the new ...
4
votes
2answers
5k views

Using BeginInvoke/EndInvoke in a multithreaded fashion. How do AsyncCallback, AsyncWaitHandle and IsCompleted interact?

Andreas Huber's answer to this question gave me an idea to implement Concurrent<T> with async delegates instead of the ThreadPool. However, I am finding it harder to understand what's going on ...
4
votes
2answers
5k views

Implementing IAsyncResult explicitly

I am generally wary of implementing interfaces partially. However, IAsyncResult is a bit of a special case, given that it supports several quite different usage patterns. How often do you use/see used ...
3
votes
2answers
324 views

How to create an IAsyncResult that immediately completes?

I am implementing an interface which requires implementations of BeginDoSomething and EndDoSomething methods. However my DoSomething isn't really long-running. For simplicity assume DoSomething only ...
3
votes
1answer
325 views

Can AsyncCallback use a non-static delegate?

I'm using .net remoting, with asynchronous function calls to handle the ipc of my current project. I'm running into an issue where I'd like the client to: ASynchronously request information ...
3
votes
2answers
214 views

Blocking until an event completes

How can you block until an asynchronous event completes? Here is a way to block until the event is called by setting a flag in the event handler and polling the flag: private object ...
3
votes
3answers
1k views

Synchronous and asynchronous callbacks

I get confused with some terms while reading MSDN documents and code samples. What are callbacks in C#? In particular, what are synchronous and asynchronous callbacks ? Please explain these from a ...
3
votes
4answers
1k views

How can I easily chain two asynchronous requests together?

I've got some code that screen scrapes a website (for illustrative purposes only!) public System.Drawing.Image GetDilbert() { var dilbertUrl = new Uri(@"http://dilbert.com"); var request = ...
3
votes
1answer
3k views

C#, IAsyncResult and the thread pool

I use the Action<object>.BeginInvoke() method, does this use the thread pool or not? I have the following C# code: List<FileHash> hashList1 = hashList.Where((x, ind) => ind % 2 ...
2
votes
2answers
62 views

Cancel asynchronous operation

I'm developing a class library that implements a protocol stack. There I have an asynchronous operation DoSomething that implements IAsyncResult. The user of this method can use BeginDoSomething and ...
2
votes
2answers
97 views

Put several HTTP request to wait for the same I/O completion port

My application load asynchronously a big amount of information from a web service and "Application_Start". If an user request wants to use that information, and it is nor ready, the thread will be ...
2
votes
2answers
134 views

Asynchronous function making asynchronous calls

I have a library that uses the BeginXxx EndXxx asynchronous pattern (obviously, the following code is simplified): ILibrary { IAsyncResult BeginAction(string name, AsyncCallback callback, object ...
2
votes
4answers
417 views

Waiting on an IAsyncResult method that waits on another IAsyncResult (Chaining)

(can only use .NET 3.5 stock, so no Tasks, no Reactive Extensions) I have, what I thought to be a simple case, but I'm baffled at it. The short of it is that, I'm returning BeginGetRequestStream's ...
2
votes
2answers
2k views

Two questions about AsyncCallback and IAsyncResult pattern

Two questions on the callback pattern with AsyncCallback and IAsyncResult. I changed the question with a code example: using System; using System.Collections.Generic; using System.Text; namespace ...
2
votes
2answers
258 views

Simulating push technology by rebuilding the AsynchResult Object - is it even possible?

Recently, I successfully created a long-polling service using HttpAsyncHandler’s. During the development it came to me (that) I “might” be able to re-use the AsyncResult object many times without ...
2
votes
3answers
2k views

HttpWebRequest.EndGetResponse throws a NotSupportedException in Windows Phone 7

in a Silverlight-Windows Phone 7-project I am creating an HttpWebRequest, get the RequestStream, write something into the Stream and try to get the response, but I always get a NotSupportedException: ...
2
votes
1answer
59 views

Can I use a single instance of a delegate to start multiple Asynchronous Requests?

Just wondered if someone could clarify the use of BeginInvoke on an instance of some delegate when you want to make multiple asynchronous calls since the MSDN documentation doesn't really ...
2
votes
2answers
95 views

What are pros and cons of consuming web services with 1. events / 2. IAsyncResult?

I made a WPF example that consumes a web service (www.webservicex.com/globalweather.asmx) in two different ways: with events like this: public Window1() { InitializeComponent(); DataContext ...
2
votes
1answer
764 views

VB.NET 3.5 SocketException on deployment but not on development machine

I have written an async UDP client to talk to a server at my company. When I run on my developer machine all is well. When I deploy to another machine I get a socket exception on EndReceive the ...
1
vote
1answer
76 views

Does AsyncWaitHandle.WaitOne block the CLR thread? Or does it create an I/O completion port?

I have that question, does AsyncWaitHandle.WaitOne block the CLR thread? or does it create an I/O completion port? For example, when I run my application I launch a task 'A' that initializes some ...
1
vote
1answer
218 views

ASP.Net Async Page with Action.BeginInvoke

I'm trying to write an async page in asp .net which runs a function in a different thread. The problem in the following code, is that when I debug it, the function EndAsyncOperation is never called. ...
1
vote
1answer
76 views

IsCompletedSynchronously for the RegisterasyncTask

I am using RegisterAsyncTask to do some IO bound operation in aspx page. I have 2 question regarding the same. 1) What happens if I perform the IO operation in OnBeginEvent and the BeginfXXX retrun ...
1
vote
1answer
301 views

Brain Teaser: IAsyncResult AsyncState is null after callback in Async ASP .Net Page

I could really do with some help on this one - I am completely stuck :-( I have implemented the Async pattern (correctly, hopefully) in a search component that I have developed. This is being called ...
1
vote
1answer
228 views

C# How do I pass more than just IAsyncResult into AsyncCallback?

How do I pass more than just the IAsyncResult into AsyncCallback? Example code: //Usage var req = (HttpWebRequest)iAreq; req.BeginGetResponse(new AsyncCallback(iEndGetResponse), req); //Method ...
1
vote
4answers
1k views

Label.Text = Struct.Value (Microsoft.VisualStudio.Debugger.Runtime.CrossThreadMessagingException)

I have an app that I'm working on that polls usage from an ISP (Download quota). I've tried threading this via 'new Thread(ThreaProc)' but that didn't work, now trying an IAsyncResult based approach ...
1
vote
1answer
103 views

EndInvoke's arguments

I have a delegate foo, I call BeginInvoke on it and retrieve the IAsyncResult into a var bar. I then call EndInvoke(bar) and everything is happy. Why do I have to pass bar to endinvoke? what exactly ...
1
vote
1answer
144 views

WCF service aync pattern feedback on failed transmission

I am working in Silverlight 4 and implementing a Polling Duplex service with an asynchronous pattern used to update the clients. // interface for messages back to client ...
1
vote
0answers
898 views

Cleanly handling AsyncTimeout on ASP.NET Async Page

According to this article The Begin Event Handler is Always Invoked The second impliciation of AsyncTimeout that I had not really internalized until recently is that the begin event ...
1
vote
2answers
421 views

C# void ReceiveData(IAsyncResult iar)

i would like some help with the following. this is to do with Asynchronous sockets. from the sender: string stringData = "Welcome to my server server server"; byte[] message1 = ...
0
votes
1answer
72 views

Calling multiple WCF service using IAsyncResult and AsyncCallback

I have one web page MyWebPage.aspx which while loading has to show data from two webservices along with it's own algorithm. 1) WebServiceI.SomeMethod() -> Takes 10 seconds aprx. to respond. 2) ...
0
votes
0answers
24 views

What does IASyncResult do in relation to running a MySQL query?

In a .NET 4 C# application I have a method that runs queries against a MySQL database. There was a issue with queries that went 'rogue' and one solution that SO suggested was the use of IASyncResult. ...
0
votes
1answer
89 views

WCF Async deadlock?

Has anyone run into a situation where a WaitAny call returns a valid handle index, but the Proxy.End call blocks? Or has any recommendations or how best to debug this - tried tracing, performance ...
0
votes
2answers
129 views

IAsyncresult - polling without freezing the UI?

I've got a windows svc which is running asynchronously (I've edited the methods and their parameters to make them async), a little like: http://msdn.microsoft.com/en-us/library/ms731177.aspx However, ...
0
votes
1answer
324 views

C# IAsyncResult WaitAll

In some of the implementations of WaitAll I have seen the following code IAsyncResult result1 = Method.BeginInvoke(10, MyCallback, null) IAsyncResult result2 = Method.BeginInvoke(20, MyCallback, ...
0
votes
0answers
137 views

C# - Chaining IAsyncResult (to avoid race condition?)

public class Blah { public IAsyncResult BeginDoSomething(...) { HttpWebRequest x = new Http...(); return x.BeginGetResponse(...); } public string EndDoSomething(...ar) ...
0
votes
2answers
54 views

How can I limit how long a task runs under .Net?

I know there are various ways to limit how long a task runs under .Net and I wondered if there are any others I've missed or modifications/improvements to the methods I've used previously. Where I am ...
0
votes
1answer
206 views

SQL Syntax error when using SQLCommand.EndExecuteNonQuery

I'm trying to run two SQL statements (MSSQL 2005), asynchronously in a background worker. However, when I call the EndExecuteNonQuery method on the first SqlCommand I get a 'SQL syntax error near' ...
0
votes
1answer
134 views

DotNetOpenAuth and Async WebRequest (BeginGetResponse)

DotNetOpenAuth Samples don't include an example for performing a call asynchronously. Here's my implementation. I'd like to know if I'm doing something wrong. public static IAsyncResult ...
0
votes
1answer
290 views

Updating a DataRepeater inside updatepanel with IAsyncResult not working!

I am having trouble binding data to data repeater when I use ISyncResult. This is what I am doing. There is a button inside a Update Panel that gets the input from the user and calls a function that ...
0
votes
2answers
112 views

2nd BeginInvoke call claims already completed. Why?

I'm repeatedly calling a method with BeginInvoke. After each call, I call EndInvoke. The problem is that for the second call, the IsCompleted member in the returned IAsyncResult is set to true ...
0
votes
1answer
525 views

vb.net implimenting IAsyncResult.AsyncState

I can easily do this in C#...but I need the equivolent in VB.Net. I need to be able to implement various IAsyncResult properties in VB.Net. IN C# Works like a champ... public object AsyncState { ...
0
votes
1answer
177 views

.net Remoting: Detect if a server isn't running

I'm working on an app that uses .net remoting for IPC. When my client app starts up, it uses the following code to connect to the server: chnl = gcnew HttpChannel(); ...
0
votes
2answers
140 views

Help me solve this Threading issue with GPS

I have a GPS class which i obviously use to acquire the latitudes and longitudes. The UpdateData() is called when the gps state or location is changed. So i make sure that both the Latitude and ...
0
votes
2answers
157 views

During BeginInvoke calls, what does the @object parameter refer to?

In a sample use of the BeginInvoke thread pool method: ... Func<string, int> method = someWorkMethod; IAsyncResult cookie = method.BeginInvoke("test", ... One of the expected parameters (the ...
0
votes
2answers
123 views

Two questions on ensuring EndInvoke() gets called on a list of IAsyncResult objects

So this question is regarding the .Net IAsyncResult design pattern and the necessity of calling EndInvoke as covered in this question Background I have some code where I'm firing off potentially ...
0
votes
3answers
138 views

Iasyncresult - why it is not just object, why it is interface?

I just cannot figure out what why IAsyncResult is an interface instead of simple object. As I remember correctly, interface contains only method names without implementation so I canot see how it is ...
0
votes
1answer
2k views

Why doesn't my NamedPipeServerStream wait?

I'm working with a NamedPipeServerStream to communicate between two processes. Here is the code where I initialize and connect the pipe: void Foo(IHasData objectProvider) { Stream stream = ...

1 2