HTTPSeverUtility

  • Thread starter Thread starter Carlo Razzeto
  • Start date Start date
C

Carlo Razzeto

I have an application I am writing that I would like to run as a windows
server, but I would like it to use an instance of the HTTPServerUtility
class for decoding information it will receive from an Exchange server (this
will be using webdav to periodically pull messages from the server and
archive them in a db). How does one actually create an instance of the
HTTPServerUtility class? Is this even possible? Or is there a different
class some where in the frame work with URL Encode and Decode methods?

Carlo
 
Carlo Razzeto said:
I have an application I am writing that I would like to run as a windows
server, but I would like it to use an instance of the HTTPServerUtility
class for decoding information it will receive from an Exchange server (this
will be using webdav to periodically pull messages from the server and
archive them in a db). How does one actually create an instance of the
HTTPServerUtility class? Is this even possible? Or is there a different
class some where in the frame work with URL Encode and Decode methods?

Look at the HttpUtility class.
 
Jon Skeet said:
Look at the HttpUtility class.

Thanks, I guess I didn't look very closely at the .Net SDK because now that
you mentioned that I actually do see it listed there. Thanks for the heads
up.

Carlo
 
Back
Top