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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top