I am working on ASP.NET Web Application with C#. Kindly go through the .
Now, what I want is that a client sends a request to Server1 and Server1 requests Server2. I want the latter request to be asynchronous. I want Server1 to respond immediately to client before even getting response from Server2.
UPDATE:
I have been working on async
and await
, unable to understand (with a simplest example) the work around.
All I understood is that async
tells that the function is asynchronous and contains await
statement which is asynchonously executed.
I don't find any reason for why people are downvoting my question. If you do, kindly let me know.