JSON.Net - 仅在序列化时使用JsonIgnoreAttribute(但在反序列化时不使用)

时间:2011-10-06 23:16:27

标签: c# json.net

我们正在使用JSON.net,并希望使用一致的方式来发送和接收数据(文档)。

我们想要一个基类,所有文档都将从中派生出来。基类将具有DocumentType属性 - 这实际上是类名。

当客户端将此json序列化文档发布到服务器时,我们希望对其进行反序列化,并确保客户端指定的DocumentType与服务器上的ExpectedDocumentType匹配。

然后,除此之外,当此文档由服务器序列化并发送到客户端时,我们希望JSON中包含DocumentType属性 - 技巧是我们希望此值为ExpectedDocumentType的值。

我试图这样做...如果JsonProperty和JsonIgnore属性仅在序列化期间生效而不是反序列化,这将起作用,但不幸的是情况并非如此。

public abstract class JsonDocument
{
    /// <summary>
    /// The document type that the concrete class expects to be deserialized from.
    /// </summary>
    //[JsonProperty(PropertyName = "DocumentType")] // We substitute the DocumentType property with this ExpectedDocumentType property when serializing derived types.
    public abstract string ExpectedDocumentType { get; }


    /// <summary>
    /// The actual document type that was provided in the JSON that the concrete class was deserialized from.
    /// </summary>
    [JsonIgnore] // We ignore this property when serializing derived types and instead use the ExpectedDocumentType property.
    public string DocumentType { get; set; }
}

有谁知道如何实现这个目标?

本质上逻辑是客户端可以提供任何DocumentType,因此在反序列化期间服务器需要确保这与ExpectedDocumentType匹配,然后在序列化期间,当服务器将此文档发送到客户端时,服务器知道正确的DocumentType,因此需要使用ExpectedDocumentType填充它。

2 个答案:

答案 0 :(得分:3)

使用Json.Net提供的ShouldSerialize功能。所以基本上,你的课程看起来像:

public abstract class JsonDocument
{
    /// <summary>
    /// The document type that the concrete class expects to be deserialized from.
    /// </summary>
    //[JsonProperty(PropertyName = "DocumentType")] // We substitute the DocumentType property with this ExpectedDocumentType property when serializing derived types.
    public abstract string ExpectedDocumentType { get; }

    /// <summary>
    /// The actual document type that was provided in the JSON that the concrete class was deserialized from.
    /// </summary>
    public string DocumentType { get; set; }

    //Tells json.net to not serialize DocumentType, but allows DocumentType to be deserialized
    public bool ShouldSerializeDocumentType()
    {
        return false;
    }
}

答案 1 :(得分:0)

你可以使用Enum执行此操作,我不知道DocumentType是否为枚举但应该是。

enum DocumentType {
    XML,
    JSON,
    PDF,
    DOC
}

反序列化请求时,如果客户端向您发送无效的枚举,则会出错。您可以捕获“InvalidEnumArgumentException”并告诉客户端它正在发送无效的DocumentType。