XSerializer icon indicating copy to clipboard operation
XSerializer copied to clipboard

An XML serializer that works with interfaces (!)

Results 21 XSerializer issues
Sort by recently updated
recently updated
newest added

Bumps [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) from 4.5.11 to 13.0.1. Release notes Sourced from Newtonsoft.Json's releases. 13.0.1 New feature - Add JsonSelectSettings with configuration for a regex timeout Change - Remove portable assemblies from...

dependencies

Unfortunately the interface is totally different from XmlSerializer. It is new implementation lacking the namespace capability. One should not promise something like this. It cost me quite some time to...

Hey, I've been having issues with serializing from XML, with the following Exception information: ``` System.InvalidOperationException: Serialization Helper object has not been initialized. [07/08/2021 13:11:27.317] at XSerializer.CustomSerializer`1.NullHelper.XSerializer.CustomSerializer.IHelper.SetElementPropertyValue(ISerializeOptions options, Boolean& shouldIssueRead)...

Now InvariantCulture is used for XML serialization by Default Possibility to change culture for XML serialization Json serialization now always use InvariantCulture

It's an option with XmlWriterSettings, but I see no obvious way to do the same with XSerializer. It's useful when creating xml fragments, and when using the method "string Serialize(T...

Hi I'm trying to deserialize an object serialized with the default xml serializer In short, when serializing a list, standard serializer generates this XML but XSerializer generates and **is unable...

When serializing a `List` of objects `EmiNil` gets set to `true` for all child objects. This test highlights the inconsistent behavior: ``` public class ParentObject { public ChildObject Child {...

When I'm serializing objects containing a Vector2 member (Microsoft.Xna.Framework.Vector2), everything is being serialized except for that member. This type correctly serializes using the BCL XMLSerializer. Is there a way for...

We are trying to use XSerializer in place of the System.Xml.Serialization because of some weird behavior we are experiencing with a few XML docs. In trying XSerializer we discovered it...

Regarding the ListSerializer, what is the point of `AlwaysEmitNil()` if `null` items are not serialized via the CustomSerializer class when the `ShouldEmitNil `option is false (the default)? The ListSerializer class...