Anil Namde
Anil Namde

Reputation: 6618

C# async file(...) operation, Asynch itself how to

Its few months i am into the C#... and i am listening Asynchronous ... operation stuff... though concept sounds easy i am finding it difficult to understand it.

What i would like to try is to send huge HTTP request/file and write it on server end using asynch operation once its compete read the file from this location and take it to other place.

Can some one please guide me to some nice Asynchronous tutorials where it would be easy for me to visualize and understand how to and what it does ?

Upvotes: 0

Views: 120

Answers (1)

Andreas Paulsson
Andreas Paulsson

Reputation: 7813

You can find a sample here: Making Asynchronous Requests of how to use HttpRequest asynchronously.

Upvotes: 1

Related Questions