I want to code a simple file downloader in C#. I want to know how it works? eg. If I give it a URL, what will it do? I have a very rough idea about it.
- It will send a HTTP request.
- The server will reply and send the file.
- The downloader will get the file and store it in hard drive.
This is my first time coding on web technology. So I hardly have any idea.
Can anybody please explain me the steps?