0
votes
3answers
88 views

Async in 4.5: Cancellation and Timeout

I have a long running process inside a HTTPHandler that I asynchronously perform using Async Await .net 4.5 This works perfectly as expected... How can I add a timeout so that the string 'timeout' ...
0
votes
1answer
90 views

How to implement redirect to other page after some long process in Page_Load?

Hello I would like to make redirection to other page after some process on server side in Page_Load event with Asp Net 4.5 syntax (ASYNC and TASK keywords). I fount out this way something like this ...
2
votes
2answers
340 views

Unable to declare Interface “ async Task<myObject> MyMethod(Object myObj); ”

I'm unable to declare interface IMyInterface { async Task<myObject> MyMethod(Object myObj); } The compiler tells me: The modifier async isn't valid for this item The async modifier can ...
5
votes
2answers
2k views

Understanding context in C# 5 async/await

Am I correct that async/await itself has nothing to do with concurrency/parallelism and is nothing more than CPS implementation? And the real threading is performed by SynchronizationContext instance ...
2
votes
1answer
627 views

How to cancel an async WebApi action after timeout?

Using ASP.Net WebAPI, I have a controller with an asynchronous action similar to the following: [HttpPost] public async Task<string> DoSomething(string foo) { var result = await ...
0
votes
1answer
118 views

sporadic NullPointerException in CurrentModuleContainer.Get Asp .Net code when doing async handling

I have an Asp .Net application for which I'm using the new async/await paradigm with .net 4.5 RC. I am using the new task-based async http handler HttpTaskAsyncHandler for handling http request. In my ...