反序列化xml元素属性

本文关键字:属性 元素 xml 反序列化 | 更新日期: 2023-09-27 18:22:31

无可否认,我在这里学习,并且在序列化和取消序列化xml方面取得了进展。

我的问题是,如何访问下面XML中的URI

<address href="/api/juniper/sd/address-management/addresses/98677" 
uri="/api/juniper/sd/address-management/addresses/98677">
  <name>Any-IPv4</name> 
  <address-type>ANY_IPV4</address-type>  
  <description>Predefined any-ipv4 address</description> 
  <host-name /> 
  <id>98677</id>  
</address>

真的不知道如何在我的类中设置它来反序列化它吗?

我现在的课看起来像:

[XmlRoot("address", Namespace = "")]
public class address
{
    string _name;
    string _editVersion;
    string _addressType;
    string _ipAddress;
    string _description;
    string _hostName;
    string _zone;
    string _addressVersion;
    string _definitionType;
    string _createdByUserName;
    string _lastModifiedByUser;
    string _createdTime;
    string _lastModifiedTime;
    string _id;
    [XmlElement(ElementName = "name")]
    public string name
    {
        get { return _name; }
        set { _name = value; }
    }
    [XmlElement(ElementName = "edit-version")]
    public string editversion
    {
        get { return _editVersion; }
        set { _editVersion = value; }
    }
    [XmlElement(ElementName = "address-type")]
    public string addresstype
    {
        get { return _addressType; }
        set { _addressType = value; }
    }
    [XmlElement(ElementName = "ip-address")]
    public string ipaddress
    {
        get { return _ipAddress; }
        set { _ipAddress = value; }
    }
    [XmlElement(ElementName = "description")]
    public string description
    {
        get { return _description; }
        set { _description = value; }
    }
    [XmlElement(ElementName = "host-name")]
    public string hostname
    {
        get { return _hostName; }
        set { _hostName = value; }
    }
}

提前感谢!

反序列化xml元素属性

使用XmlAttributeAttribute属性*

[XmlAttribute]
public string uri
{
    get { return _uri; }
    set { _uri = value; }
}

如果您想让它将其序列化为System.Uri,则必须使用一个单独的属性,因为Uri是不可序列化的。

[XmlAttribute("uri")]
public string SerializedUri
{ 
    get
    {
        return uri.ToString();
    }
    set
    {
        uri = new Uri(value, UriKind.RelativeOrAbsolute);
    }
}
[XmlIgnore]
public Uri uri { get; set; }

使用这种用法,在代码中,您可以直接读/写Uri uri属性,而忽略SerializedUri属性。当通过序列化程序时,它将忽略该属性,而使用SerializedProperty,后者将手动序列化/反序列化Uri uri属性。

*(说快3倍)