vote up 0 vote down star

I get the following when tying to serialize a mial message using the los foratter.

Error: Sys.WebForms.PageRequestManagerServerErrorException: Error serializing value 'System.Net.Mail.MailMessage' of type 'System.Net.Mail.MailMessage.'

Is there an EASY way to serialize this object or am I going have to searialize each o fhte properties individually?

flag

64% accept rate
Where are you trying to serialize it to? – John Saunders Jul 13 at 23:37
I'm trying to put it into a byte array. – Middletone Jul 14 at 1:07

1 Answer

vote up 0 vote down

Sadly, the System.Net.Mail.MailMessage class is not marked as serializable. So, yes, you'll need to do it yourself. There's a technique described in the following blog post that can give you an idea of how you might proceed: How to Serialize a MailMessage ... basically, you will need to pull out each of the properties individually.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.