Как я могу получить эту структуру XML - PullRequest
1 голос
/ 28 января 2009

У меня есть веб-сервис с входным объектом, подобным следующему.

public class MyInput
{
    [System.Xml.Serialization.XmlArrayItem("Demographic")]
    public DemographicsInfo[] Demographics {get; set;}
}

С таким определением класса DemographicsInfo.

public class DemographicsInfo
{
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string Name { get; set; }
    public string Value { get; set; }
}

Прямо сейчас это генерирует структуру XML, подобную этой.

<Demographics>
    <Demographic Name="String">
        <value>string</value>
    </Demographic>
    <Demographic Name="String">
        <value>string</value>
    </Demographic>
</Demographics>

Мне нужно вложить это в это

<Demographics>
    <Demographic Name="String">string</Demographic>
    <Demographic Name="String">string</Demographic>
</Demographics>

Насколько я могу судить, я не могу найти надлежащие атрибуты для применения этого формата. У кого-нибудь есть совет?

Ответы [ 2 ]

5 голосов
/ 28 января 2009

Если вы знаете желаемую структуру, самый простой вариант - вернуться обратно из xml; запишите xml в файл (foo.xml в моем случае), затем (в командной строке):

xsd foo.xml
xsd foo.xsd /classes

Затем посмотрите на foo.cs, чтобы увидеть, как это можно сделать; получается, что вы просто помечаете значение как [System.Xml.Serialization.XmlTextAttribute()].

Вот вывод xsd:

//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated by a tool.
//     Runtime Version:2.0.50727.3053
//
//     Changes to this file may cause incorrect behavior and will be lost if
//     the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

using System.Xml.Serialization;

// 
// This source code was auto-generated by xsd, Version=2.0.50727.3038.
// 


/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
public partial class Demographics {

    private DemographicsDemographic[] itemsField;

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute("Demographic", Form=System.Xml.Schema.XmlSchemaForm.Unqualified, IsNullable=true)]
    public DemographicsDemographic[] Items {
        get {
            return this.itemsField;
        }
        set {
            this.itemsField = value;
        }
    }
}

/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
public partial class DemographicsDemographic {

    private string nameField;

    private string valueField;

    /// <remarks/>
    [System.Xml.Serialization.XmlAttributeAttribute()]
    public string Name {
        get {
            return this.nameField;
        }
        set {
            this.nameField = value;
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.XmlTextAttribute()]
    public string Value {
        get {
            return this.valueField;
        }
        set {
            this.valueField = value;
        }
    }
}
1 голос
/ 28 января 2009

Рассмотрим немного то, что есть у Марка, но я предполагаю разницу между Visual Studio 2005 и 2008.

Мне нужно было добавить следующее в объявление элемента "Значение".

[System.Xml.Serialization.XmlText()]
public string Value { get; set; }

Похоже, это работает!

...