使用 NetDataContractSerializer 进行选择性序列化

发布于 2024-08-27 02:25:29 字数 147 浏览 10 评论 0原文

序列化这个类效果很好。但是,有时我想排除该字段。这可能吗?

[DataContract]
class Foo
{
    [DataMember]
    Foo _Foo;
}

暂时将该字段设置为空是不可能的。

Serializing this class works fine. However, sometimes I'd like to exclude the field. Is this possible?

[DataContract]
class Foo
{
    [DataMember]
    Foo _Foo;
}

Setting the field to null temporarily is impossible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浪漫之都 2024-09-03 02:25:29

如果有人偶然发现同样的问题,我将展示我所经历的解决方案。

这个想法是像这样来呈现原始字段:

[DataContract]
class Foo
{
    Foo _FooOriginal;

    [DataMember]
    Foo _Foo {
        get {
            return whatever ? _FooOriginal : null;
        }
        set {
            _FooOriginal = value;
        }
    }
}

In case someone stumbles upon the same issue, I'll show the solution I went by.

The idea is to facade the original field like this:

[DataContract]
class Foo
{
    Foo _FooOriginal;

    [DataMember]
    Foo _Foo {
        get {
            return whatever ? _FooOriginal : null;
        }
        set {
            _FooOriginal = value;
        }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文