これは、MVC2.0で試していることです
public class SomeController : AsyncController
{
public void SampleAsync()
{
AsyncManager.OutstandingOperations.Increment();
for(int i=0; i=100000; i++)
{
// Some Code... This loop is just for the testing.
}
AsyncManager.OutstandingOperations.Decrement();
}
public ActionResult SampleCompleted(ActionResult result)
{
return result;
}
}
- 私の質問は、ここではACTIONRESULTであるSampleCompletedのパラメーターは何になるかということです。私は見つけようとしましたが、どこでも何か違うものを見つけます。それで、それは正確には何ですか?
- Global.ascxファイルに変更を加える必要がありますか?RouteCollection.MapRouteからRouteCollection.AsyncMapRouteのように