You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After serialisation I need a XML structure like this:
<ContentFile NumPages="1">this is the value stored in private property _path</ContentFile>
Unfortunately I can't figure out how to do this because as soon as I declare _path as a XMLChild I get a sub-Element:
<ContentFile NumPages="1">
<_path>this is the value stored in private property _path</_path>
</ContentFile>
I miss something like a @XMLText decorator which allows me to serialize a class property into a XML text node.
Or is it possible to achieve this with existing means?
Best,
Robert
The text was updated successfully, but these errors were encountered:
Hello,
I have the following class definition with embedded decorators:
After serialisation I need a XML structure like this:
Unfortunately I can't figure out how to do this because as soon as I declare _path as a XMLChild I get a sub-Element:
I miss something like a @XMLText decorator which allows me to serialize a class property into a XML text node.
Or is it possible to achieve this with existing means?
Best,
Robert
The text was updated successfully, but these errors were encountered: