微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c# – 将xml响应映射到类?

我不知道如何将一些XML表示为C#类.有没有人对如何正确映射这个xml有任何建议?以下是我的尝试:

<authenticationResponse>
  <Accounts>
    <AccountId>1</AccountId>
    <AccountId>5</AccountId>
  </Accounts>
</authenticationResponse>


public class authenticationResponse
{
    [XmlElement("Accounts")]
    [DataMember]
    public List<Account> Accounts { get; set; }
}

public class Account
{
    public long id { get; set; }
}

解决方法:

您可以通过LINQ to XML加载此数据:

XElement x = XElement.Load("YourFile.xml");
List<Account> accounts = x.Element("Accounts")
                            .Elements("AccountId")
                            .Select(e => new Account { id = (long)e })
                            .ToList();

在这种情况下,authenticationResponse类是多余的.

如果您在内存中有响应(不在硬盘上的文件中),您可以使用:

string response = ...
XElement x = XElement.Load(new StringReader(response));

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。