tags:

views:

52

answers:

1

Anyone know of a library/framework like httplib2 (python) http://code.google.com/p/httplib2/ for .NET?

It wouldn't be difficult to duplicate it, but would be a waste if it already existed some where.

Thanks.

A: 

Have you tried System.Net.HttpWebRequest?

Josh Pearce
Except for caching and the more obscure authentication methods it looks like HttpWebRequest should provide everything that the httplib2 feature list mentions. AFAIK there's nothing in the .NET framework that implements these two features. If they are required, maybe there's some third party library that implements them?
dtb
Yes, WebRequest is fine. I was just trying to make sure I wasn't reinventing the wheel before writing my own.
Scott Watermasysk