There is an old article in the MSDN Magazine with a walk-through to implement in C# the equivalent of the Javascript XMLHttpRequest object.
I find it very interesting but the code is not downloadable anymore.
Do you know of an implementation similar to the Javascript XMLHttpRequest object but in C#? Among other thinks, this implementation can:
- Send http requests to the server.
- Send requests both synchronously and asynchronously.
- Allows to abort long running processes.
I know it all can be done easily with the HTTPWebRequest object in .NET, but after reading the article I was hoping that a wrapper would be available as it used to be in the code of that article (the link is dead).
Thanks,