difference between HttpWebResponse and WebResponse?

  • Thread starter Thread starter buu
  • Start date Start date
B

buu

what is it?

Am I right that one of differences is that HttpWebResponse has property for
checking if web page is relocated?
 
Well, WebResponse is the abstract base-class for a family of similar
classes - of which HttpWebResponse is just one. There are also classes
for ftp and unc operations.

HttpWebResponse is used for http based operations, so it defines
things relevant for http (http-version, http-status-code, etc).

Marc
 
Back
Top