ASP.NET MVC 2 asynchronous action with timeout
        Posted  
        
            by thatismatt
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by thatismatt
        
        
        
        Published on 2010-03-29T08:28:47Z
        Indexed on 
            2010/03/29
            8:33 UTC
        
        
        Read the original article
        Hit count: 548
        
I want to write an asynchronous action in ASP.NET MVC 2 that waits up to 5 seconds for an event to occur. If the event occurs then the server responds with a result, otherwise the request times out.
What is the best way to achieve this?
© Stack Overflow or respective owner