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 ...
4
votes
1answer
740 views

C# .net 4.5 async delegate

This does not throw compile error, but why? public async void DoSomething(object arg){ ... } Action<object> myAnonActionDelegate = DoSomething; Shouldn't "DoSomething" have a signature of ...
3
votes
1answer
278 views

Is it possible to call async Page_Load in asp.net 4.5?

I wish to know whether it possible to call async Page_Load in asp.net 4.5 like async controllers in ASP.Net MVC 4. If it is possible, how do we use async events in asp.net?