Writing a multipart content parser with .NET

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
 
J

John Timney \(Microsoft MVP\)

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
 

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

Top