属性FilePattern
未从xml中反序列化:
<Parser FilePattern='*'/>
[Serializable(), XmlRoot("Parser")]
public class Parser : List<System.DateTime>
{
private string _FilePattern;
[XmlAttribute()]
public string FilePattern {
get { return _FilePattern; }
set { _FilePattern = value; }
}
}
private void ParserTest()
{
Parser Parser = Serialization.Deserialize("<Parser FilePattern='*'/>", typeof(Parser));
// Here, Parser.FilePattern is null
}
Parser
只是一个班级。如何填充FilePattern
属性?
答案 0 :(得分:2)
当涉及IEnumerable类型时,XmlSerializer具有特殊行为,因此您可能正在目睹某种与此类型的冲突。您可以考虑执行类似以下操作,模仿您想要的行为而不实际使您的类型成为列表:
[XmlRoot("Parser")]
public class Parser
{
public Parser()
{
this.Values = new List<DateTime>();
}
[XmlAttribute]
public string Attrib { get; set; }
[XmlElement("dateTime")]
public List<DateTime> Values { get; private set; }
}
答案 1 :(得分:1)
有时你只想做你想做的事;该框架应该被诅咒。
这是我在我的情况下为我工作的例程的初稿。随着时间的推移,我会更新我的答案。
我已将此问题放在我的Serialization
辅助模块中,与其他Deserialize
方法一起用于“普通”类。
基本上,它的作用是正常的反序列化,让xml反序列化器完成所有繁重的工作,然后使用xml元素的属性填充新反序列化的对象。
就像我说的那样,这是一个选秀,但Marc Gravell说这是很多工作,所以我必须这样做(为你做的不是很多工作)!
/// <summary>
/// Overcome limitation of xml serializer
/// that it can't deserialize properties of classes
/// that inherit from IEnumerable
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="Xml"></param>
/// <returns></returns>
/// <remarks></remarks>
public T Deserialize<T>(string Xml) where T : IEnumerable
{
T functionReturnValue = default(T);
//let the xml serializer do the rest of the work
functionReturnValue = Deserialize(Xml, typeof(T));
//copy over the additional properties
using (XmlReader XmlReader = XmlTextReader.Create(new StringReader(Xml), new XmlReaderSettings {ValidationType = ValidationType.None,XmlResolver = null})) {
XmlReader.MoveToContent();
for (int Index = 0; Index <= XmlReader.AttributeCount - 1; Index++) {
XmlReader.MoveToAttribute(Index);
typeof(T).GetProperty(XmlReader.LocalName).SetValue(Deserialize(), XmlReader.Value, null);
}
}
return functionReturnValue;
}
public object Deserialize(string Xml, Type Type)
{
object functionReturnValue = null;
functionReturnValue = null;
if (Xml == string.Empty) {
return null;
}
_Serializer = new XmlSerializer(Type);
StringReader StringReader = new StringReader(Xml);
functionReturnValue = Serializer.Deserialize(StringReader);
if (functionReturnValue is IDeserializationEvents) {
((IDeserializationEvents)functionReturnValue).DeserializationComplete();
}
return functionReturnValue;
}