The original Async CTP was released at PDC 2010. The Async CTP for VS2010 is available here. The asynchronous support is built-in to VS2011 (developer preview) and does not require a separate installation.
23
votes
6answers
4k views
How does C# 5.0's async-await feature differ from the TPL?
I don't see the different between C#'s (and VB's) new async features, and .NET 4.0's Task Parallel Library. Take, for example, Eric Lippert's code from here:
async void ...
22
votes
6answers
8k views
19
votes
7answers
889 views
Asynchronously Lazy-Loading Navigation Properties of detached Self-Tracking Entities through a WCF service?
I have a WCF client which passes Self-Tracking Entities to a WPF application built with MVVM. The application itself has a dynamic interface. Users can select which objects they want visible in their ...
17
votes
2answers
406 views
Why can't I use the 'await' operator within the body of a lock statement?
The await keyword in C# (.NET Async CTP) is not allowed from within a lock statement.
From MSDN:
An
await expression cannot be used in a synchronous function, in a query
expression, in the ...
12
votes
2answers
312 views
Using async-await on .net 4
I'm currently starting to create an application that would profit a lot from C# 5's async-await feature. But I'm not sure which version of VS and of the async runtime to use.
Looking at OS popularity ...
12
votes
4answers
536 views
C# 5 Async/Await - is it *concurrent*?
I've been considering the new async stuff in C# 5, and one particular question came up.
I understand that the await keyword is a neat compiler trick/syntactic sugar to implement continuation passing, ...
12
votes
8answers
1k views
What's a good non-networked example of the new C# Async feature?
Microsoft just announced the new C# Async feature. Every example I've seen so far is about asynchronously downloading something from HTTP. Surely there are other important async things?
Suppose I'm ...
10
votes
2answers
2k views
C# 5.0 async/await feature and Rx - Reactive Extensions
I am wondering what do the new C# 5.0 asynchronous features mean for Rx - Reactive Extensions? It seems to be not a replacement but they seem to overlap - Task and IObservable.
10
votes
3answers
3k views
Visual Studio Async CTP - How does it work?
Microsoft announced the Visual Studio Async CTP today (October 28, 2010) that introduces the async and await keywords into C#/VB for asynchronous method execution.
First I thought that the compiler ...
8
votes
3answers
681 views
How could the new async feature in c# 5.0 be implemented with call/cc?
I've been following the new announcement regarding the new async feature that will be in c# 5.0. I have a basic understanding of continuation passing style and of the transformation the new c# ...
6
votes
3answers
210 views
What is the best way to wait on a network packet using C#'s new async feature
I've recently been playing around with the new Async CTP, and I've come across a situation where I'm not sure how to proceed.
In my current code base, I'm using a concept of "jobs" and a "job ...
6
votes
2answers
363 views
What happens to an `awaiting` thread in C# Async CTP?
I've been reading about the new async await keyword and it sounds awesome, but there is one key question I haven't been able to find the answer for in any of the intro videos I've watched so far (I ...
6
votes
2answers
196 views
Question about .Net Tasks and the Async CTP
I'm experimenting with the Async CTP and liking it quite a bit. I did have a question from the whitepaper explaining it however. In it, it says:
It is important to understand that async methods ...
5
votes
2answers
144 views
Why is the async CTP performing poorly?
I don't really understand why await and async don't improve the performance of my code here like they're supposed to.
Though skeptical, I thought the compiler was supposed to rewrite my method so ...
5
votes
3answers
2k views
Async CTP - How can I use async/await to call a wcf service?
If I call a WCF service method I would do something like this:
proxy.DoSomethingAsync();
proxy.DoSomethingAsyncCompleted += OnDoSomethingAsyncCompleted;
How could I do the same using the new async ...
5
votes
2answers
451 views
Visual Studio Async CTP on vanilla .Net 4?
The way I understand it, The new Async-Await functionality in the C# 5 CTP should be all implemented in the compiler. This should mean that code compiled with the CTP should be able to run on vanilla ...
5
votes
3answers
1k views
Why does WebClient.DownloadStringTaskAsync() block ? - new async API/syntax/CTP
For some reason there is a pause after the program below starts. I believe that WebClient().DownloadStringTaskAsync() is the cause.
class Program
{
static void Main(string[] args)
{
...
4
votes
3answers
142 views
Can constructors be async
I have a silverlight project where I'm trying to populate some data in a constructor
public class ViewModel
{
public ObservableCollection<TData> Data { get; set; }
async public ...
4
votes
3answers
436 views
C#5 AsyncCtp BadImageFormatException
Please help me with this one, I've been writing a console applicaiton using the AsyncCtpLibrary and the C#5 ctp compiler. First time I got to actually running a code which awaits, I got this:
...
4
votes
2answers
570 views
Agent/MailboxProcessor in C# using new async/await
This question combines two topics I don't fully understand
Reading through a paper about async in F#, I came across the topic of Agents/MailboxProcessors, which can be used to implement reactive ...
3
votes
2answers
191 views
Deserialization and Async/Await
In my app (Windows 8 Metro) I store some objects in the local Folder in a serialized format. Here's the method to read then back (see below).
If I call this method with Task.Run, I can get the ...
3
votes
4answers
188 views
awaitable Task based queue
I'm wondering if there exists an implementation/wrapper for ConcurrentQueue, similar to BlockingCollection where taking from the collection does not block, but is instead asynchronous and will cause ...
3
votes
2answers
213 views
How does the new async/await feature in C# 5 integrate with the message loop?
I've not had chance to check out the CTP of the new C# async/await feature, but here's something I was wondering:
How does it integrate with the message loop? I assume that in a standard Windows ...
3
votes
2answers
257 views
Aync/await in web browser or in node.js?
Is there any attempt to bring async/await feature from C# 5.0 to any language which can be compiled to JavaScript (such as CoffeScript)? (So it can be used either in web browser or in node.js.)
3
votes
1answer
325 views
Try-Catch Async Exceptions (C# 5.0)
This example "fails":
static async void Main(string[] args)
{
try
{
await TaskEx.Run(() => { throw new Exception("failure"); });
}
catch (Exception)
{
throw new ...
3
votes
3answers
251 views
await immediately moves to next statement (.NET Async CTP)
I am playing with the new Async CTP bits, and I can't get it work with either server-side or just command-line program (and all the examples are either WPF or Silverlight). For example, some trivial ...
3
votes
6answers
783 views
How to implement await without Async CTP
How would you implement something that works similarly to the Async CTP await keyword? Is there a simple implementation that works like await in all cases, or does await require different ...
3
votes
2answers
286 views
C#5 asynch : how is resumption from await implemented
I've been reading Eric Lippert's blog posts on Asynchrony in C# 5 (part 4 being particular relevant) and have watched Anders PDC10 talk on the subject and I'm unclear on how continuations from ...
3
votes
1answer
302 views
How does C# 5.0 async work?
I'm trying to grok how C# 5's new async feature works. Suppose I want to develop an atomic increment function for incrementing an integer in a fictitious IntStore. Multiple calls are made to this ...
2
votes
5answers
86 views
Using Task or async/await in IHttpAsyncHandler
Since the very begining of writing ASP.NET applications when I wanted to add a threading there are 3 simple ways I can accomplish threading within my ASP.NET application :
Using the ...
2
votes
1answer
91 views
Await in catch block
I have the following code:
WebClient wc = new WebClient();
string result;
try
{
result = await wc.DownloadStringTaskAsync( new Uri( "http://badurl" ) );
}
catch
{
result = await ...
2
votes
1answer
69 views
Asyn -Await expression returns wrong result
I have a problem with async-await expression which returns wrong result.
private Task<int> A
{
get
{
return TaskEx.RunEx<int>(async () =>
{
...
2
votes
1answer
101 views
Async/Await - Overriding continuation state storage/restore algorithm?
When i saw the first news about await, i was very excited and i thought many ways of using it.
One of these is to use it in my web framework to hide the asynchronous aspect of client/server exchanges ...
2
votes
2answers
112 views
Throw Exception inside a Task - “await” vs Wait()
static async void Main(string[] args)
{
Task t = new Task(() => { throw new Exception(); });
try
{
t.Start();
t.Wait(); ...
2
votes
1answer
193 views
How to force async child overrides in C# 5.0
I'm working on a system in which multiple client objects are expected to implement a particular function via an interface, and I want that function to run asynchronously with continuations (I'm ...
2
votes
1answer
463 views
How to write C# 5 async?
I have the following scenario:
When a command is inputted (for test, it's a console application, when it's ready, I hope it will be a WebService) I execute some code, and when further user input is ...
2
votes
3answers
270 views
multiple parallel async calls with await in async ctp
as far as i know when runtime come across the statement below it wraps the rest of the function as a callback to the method which is invoked asynchronously (someCall() in this example). in this case ...
2
votes
4answers
493 views
C# 5 Is it possible to “await yield return DoSomethingAsync()”
Are regular iterator blocks (i.e. "yield return") incompatible with "async" and "await"?
This gives a good idea of what I'm trying to do:
async Task<IEnumerable<Foo>> Method(String [] ...
2
votes
1answer
291 views
How to create a wrapper for an async-await call?
From what I can tell, there is no built-in (or framework extension) support for ConnectAsync/AcceptAsync/SendAsync/ReceiveAsync, etc.. How would I write my own wrapper that would be supported by the ...
2
votes
0answers
493 views
Cool coding tricks with the new C# async await operator in C# 5.0
Everyone has seen Anders Hejlsberg demonstrate the new C# 5.0 feature for asynchronous programming. He demonstrated how he ran network stuff in the background and the results being pushed into a ...
2
votes
2answers
899 views
Async CTP - WCF service call async other WCF services
I've read about the task-based asynchronous pattern and it sounds great.
Now, I have a WCF service that needs to call other WCF services. Those services return differnet result.
How can async call ...
1
vote
2answers
38 views
Performing wait operation in ASP.NET web application?
I would like to hook into this question, however perhaps rephrase it from a different angle.
For anti fraud purposes I would like to block visitors after a certain amount of incorrect login attempts. ...
1
vote
1answer
27 views
Encapsulating a sync method with async CTP doesn't work
Last year, I wrote a web API library with classic synchronous and asynchronous methods. I'm now trying to add TaskAsync methods using the new C# Async CTP 3.
I wrote this simple code to encapsulate ...
1
vote
1answer
48 views
Download HTML pages concurrently using the Async CTP
Attempting to write a HTML crawler using the Async CTP I have gotten stuck as to how to write a recursion free method for accomplishing this.
This is the code I have so far.
private readonly ...
1
vote
1answer
103 views
awaitable lambdas
Dynamic Evaluations in a Key Listener
public class KeyUpper {
Func<Key, bool> _evaluate;
public void RegisterEvaluator(Func<Key, bool> evaluate){
_evaluate = evaluate;
...
1
vote
2answers
64 views
Awaiting the generation of multiple items in a single thread
(OBS: English is not my native language and I understand that the title of this question is far from good, but I tried my best to make the question itself clear)
Let's suppose I have a ...
1
vote
1answer
117 views
How to Async.AwaitTask on plain Task (not Task<T>)?
I'm trying to consume a C# library in F#. The library makes heavy use of async/await. I want to use within an async { ... } workflow in F#.
I see we can Async.AwaitTask on async C# methods returning ...
1
vote
3answers
100 views
Can this code be improved with the use of multithreading?
I have a simple Windows service, which runs only once per day. It performs some queries in database, generates appropriate html content (tables, divs, ...) and sends it in body of an e-mail to ...
1
vote
2answers
276 views
async/await, TaskEx.WhenAll and exceptions
This is just an imaginary problem, I'm hoping that the solution will help in whole range of similar scenarios. Suppose I need to count total size of all external resources on a webpage (images, ...
1
vote
1answer
219 views
Silverligh 5 SDK RC + Async CTP : make it work
Just installed the Silverligh 5 SDK RC. There is a problem using it inside a project that uses the Async CTP.
Both AsyncCtpLibrary_Silverlight.dll and mscorlib.dll contains the Task type (And some ...