Home All Groups Group Topic Archive Search About

xml serialization of List<byte>

Author
1 Nov 2006 8:39 PM
lee.crabtree
I'm trying to serialize a generic List of bytes, as in List<byte>.  Out
of the box, it works, but it winds up like this:

....
<LineData>0</LineData>
<LineData>0</LineData>
<LineData>0</LineData>
<LineData>0</LineData>
<LineData>0</LineData>
<LineData>0</LineData>
<LineData>0</LineData>
<LineData>255</LineData>
<LineData>255</LineData>
<LineData>255</LineData>
<LineData>255</LineData>
<LineData>255</LineData>
<LineData>255</LineData>
....

The data is right, but have each byte in a tag is just asinine.  It
would make a whole lot more sense to have it serialized as "hexBinary"
or "base64Binary", but adding those attributes throw an error saying
that there was an exception reflecting the type containing the List.

What am I doing wrong?

Lee Crabtree

Author
2 Nov 2006 2:30 AM
Kevin Spencer
If you want an array of bytes serialized as Base64, use an array, not a
List.

--
HTH,

Kevin Spencer
Microsoft MVP
Short Order Coder
http://unclechutney.blogspot.com

The devil is in the yada yada yada


<lee.crabt***@gmail.com> wrote in message
Show quote
news:1162413539.934521.278220@f16g2000cwb.googlegroups.com...
> I'm trying to serialize a generic List of bytes, as in List<byte>.  Out
> of the box, it works, but it winds up like this:
>
> ...
> <LineData>0</LineData>
> <LineData>0</LineData>
> <LineData>0</LineData>
> <LineData>0</LineData>
> <LineData>0</LineData>
> <LineData>0</LineData>
> <LineData>0</LineData>
> <LineData>255</LineData>
> <LineData>255</LineData>
> <LineData>255</LineData>
> <LineData>255</LineData>
> <LineData>255</LineData>
> <LineData>255</LineData>
> ...
>
> The data is right, but have each byte in a tag is just asinine.  It
> would make a whole lot more sense to have it serialized as "hexBinary"
> or "base64Binary", but adding those attributes throw an error saying
> that there was an exception reflecting the type containing the List.
>
> What am I doing wrong?
>
> Lee Crabtree
>

AddThis Social Bookmark Button