Skip to content

TIL: Why "__type" is added when I serialize to JSON

🏷️ ASP.NET JSON

通过 ASP.NET WebService 返回实体时会自动将实体序列化为 Json,但是会自动添加一个 __type 属性,导致 Java 端反序列化失败。

根据 TIL: Why "__type" is added when I serialize to JSON,只要将返回类型的构造函数改为 internal 就可以把 __type 去掉了。