Deserialization

  • Thread starter Thread starter Joe
  • Start date Start date
J

Joe

Hi All!

I have a case where I need to deserialize an object which contains a
DataTable without deserializing the Rows. Is this possible?

I thought I would use a SerializationSurrogate but it looks like this will
only allow me to decide whether or not to deserialize my entire object.

Am I wrong with this thinking?

Thanks for any help,
Joe
 
Joe said:
Hi All!

I have a case where I need to deserialize an object which contains a
DataTable without deserializing the Rows. Is this possible?

I thought I would use a SerializationSurrogate but it looks like this will
only allow me to decide whether or not to deserialize my entire object.

Am I wrong with this thinking?

Thanks for any help,
Joe

Seems like ISerializationSurrogate can help, but only if you use it when
serializing and deserializing.

HIH, Petar
 
Back
Top