문제

Are there any serialization/deserialization scenarios that DataContractSerializer can handle, while DataContractJsonSerializer can't?

In particular, I am thinking of circular references: this MSDN page explains how circular references can be managed by DataContractSerializer via the use of IsReference = true in the DataContractAttribute constructor. On the other hand, the DataContractAttribute.IsReference documentation does not explicitly state that its applicability is limited to DataContractSerializer.

Will DataContractJsonSerializer also honor the IsReference property?

도움이 되었습니까?

해결책

There's nothing like a good old hands-on testing in the afternoon...

When applying DataContractAttribute.IsReference = true on the class subject to serialization,

[DataContract(IsReference = true)]
public class SerializableClass {
...
}

and trying to serialize it using the DataContractJsonSerializer,

var serializer = new DataContractJsonSerializer(typeof(SerializableClass));
serializer.WriteObject(stream, obj);

The WriteObject method will throw an exception:

System.Runtime.Serialization.SerializationException : The type 'SerializableClass' cannot be serialized to JSON because its IsReference setting is 'True'. The JSON format does not support references because there is no standardized format for representing references. To enable serialization, disable the IsReference setting on the type or an appropriate parent class of the type.

If I on the other hand use DataContractSerializer to serialize the same object, serialization (and deserialization) works like a charm.

Now, if anyone knows of more limitations of DataContractJsonSerializer in comparison with DataContractSerializer, I am all ears...

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top