Writing a multipart content parser with .NET

  • Thread starter Thread starter darin dimitrov
  • Start date Start date
D

darin dimitrov

I am looking for an implementation of a multipart content parser for
..NET (http://www.faqs.org/rfcs/rfc2388.html). I suppose that the
HttpWebRequest class uses such a parser in order to extract the
parameters and uploaded files from the request stream. Correct me if
I am wrong but these classes are intended for an internal of the
framework. So my question is what would be the easiest way to
implement such a parser in .NET ?

Thanks,
Darin
 
If I was you I would get the MONO source code and pull out the methods for
upload and see what it does. Someones already done the work for you, you
just need to find the right bits of code.

--
Regards

John Timney
Microsoft Regional Director
Microsoft MVP
 
Back
Top