gpt4 book ai didi

c# - 用属性覆盖属性

转载 作者:可可西里 更新时间:2023-11-01 08:55:03 26 4
gpt4 key购买 nike

我正在尝试找到一种方法来更改属性的序列化行为。

假设我有这样的情况:

[Serializable]
public class Record
{
public DateTime LastUpdated {get; set; }

// other useful properties ...
}

public class EmployeeRecord : Record
{
public string EmployeeName {get; set; }

// other useful properties ...
}

现在我想序列化 EmployeeRecord。我不希望 Record 类的 LastUpdated 属性被序列化。 (不过,我确实希望在序列化 Record 时序列化 LastUpdated)。

首先,我尝试使用 new 关键字隐藏 LastUpdated 属性,然后添加 XmlIgnore 属性:

public class EmployeeRecord : Record
{
public string EmployeeName {get; set; }

[XmlIgnore]
public new DateTime LastUpdated {get; set; }
// other useful properties ...
}

但这没有用。然后我尝试将基础 LastUpdated 设为虚拟并覆盖它,同时保留属性:

[Serializable]
public class Record
{
public virtual DateTime LastUpdated {get; set; }

// other useful properties ...
}

public class EmployeeRecord : Record
{
public string EmployeeName {get; set; }

[XmlIgnore]
public override DateTime LastUpdated {get; set; }
// other useful properties ...
}

这也没有用。在这两次尝试中,LastUpdated 都忽略了 XmlIgnore 属性并愉快地进行序列化。

有没有办法让我想做的事情发生?

最佳答案

首先,[Serializable] 属性与 XmlSerializer 无关。那是一条红鲱鱼。 [Serializable] 对 System.Runtime.Serialization 有意义,而 XmlSerializer 存在于 System.Xml.Serialization 中。如果您使用 [Serializable] 装饰您的类并使用 [XmlIgnore] 装饰您的成员,那么您可能会让自己或代码的其他读者感到困惑。

.NET 中的 XmlSerialization 非常灵活。取决于序列化是如何完成的,直接由您完成还是间接完成,比方说由 Web 服务运行时 - 您有不同的方式来控制事物。

一种选择是使用propertyName指定模式在 XML 序列化中打开或关闭属性。假设你有这样的代码:

public class TypeA
{
public DateTime LastModified;
[XmlIgnore]
public bool LastModifiedSpecified;
}

那么,如果某个实例中的 LastModifiedSpecified 为假,则不会为该实例序列化 LastModified 字段。在您的类型的构造函数中,您可以将 LastModifiedSpecified 设置为在基类型中始终为 true,在派生类型中始终为 false。实际的 bool 值 - LastModifiedSpecified - 永远不会被序列化,因为它被标记为 XmlIgnore。

记录了这个小技巧 here .

您的另一个选择是使用 XmlAttributeOverrides,这是一种动态提供 XML 序列化属性集(如 XmlElementAttribute、XmlIgnoreAttribute、XmlRootAttribute 等等...)的方法 - 在运行时动态地向序列化程序提供这些属性。 XmlSerializer 不会检查这些属性的类型本身,而只会遍历提供给其构造函数的覆盖属性列表。

    var overrides = new XmlAttributeOverrides();
// ....fill the overrides here....
// create a new instance of the serializer specifying overrides
var s1 = new XmlSerializer(typeof(Foo), overrides);
// serialize as normal, here.

这有更详细的说明 here .

在您的情况下,您将提供一个 XmlIgnoreAttribute 作为覆盖,但仅在序列化派生类型时。 (或其他)这仅在您直接实例化 XmlSerializer 时有效 - 当序列化由运行时隐式完成时,它将不起作用,就像 Web 服务一样。

干杯!

关于c# - 用属性覆盖属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/592671/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com