1

そのようなタグを生成するために C# で xml ドキュメントをシリアル化することは可能ですか?

...
<myTag attr="tag">
    this is text
    <a href="http://yaplex.com">link in the same element</a>
</myTag>
...

私が見つけた唯一の方法は、myTag のコンテンツを文字列として持つことです

myTag.Value = "text <a ...>link</a>"; 

しかし、私はそれをC#のオブジェクトとして持ちたいので、a-tagはオブジェクトになります

4

2 に答える 2

1
public class myTag
{
    [XmlAttribute]
    public string attr;
    [XmlText]
    public string text;
    public Anchor a;
}

[XmlRoot("a")]
public class Anchor
{
    [XmlAttribute]
    public string href;
    [XmlText]
    public string text;
}

-

var obj = new myTag() { 
    attr = "tag", 
    text = "this is text", 
    a = new Anchor() { 
        href = "http://yaplex.com",
        text="link in the same element" 
    } 
}; 

XmlSerializer ser = new XmlSerializer(typeof(myTag));
StringWriter wr = new StringWriter();
XmlWriter writer = XmlTextWriter.Create(wr, new XmlWriterSettings() { OmitXmlDeclaration = true });
var ns = new XmlSerializerNamespaces();
ns.Add("","");
ser.Serialize(writer,obj, ns);
string result = wr.ToString();
于 2012-05-24T14:52:25.623 に答える
1

実際にクラスからシリアライズしたくない場合は、次のように xml を構築できます。

XElement xmlTree = new XElement("Root", 
    new XElement("myTag", 
    new XAttribute("attr", "tag"), 
    new XText("this is text"), 
    new XElement("a", "link in the same element", 
    new XAttribute("href", "http://yaplex.com"))));
于 2012-05-24T14:57:15.473 に答える