XmlSerializer を使用して以下を生成したかった:
<atom:link href="http://dallas.example.com/rss.xml" rel="self" type="application/rss+xml" />
だから私は自分の要素に名前空間を追加しようとしました:
[...]
[XmlElement("link", Namespace="atom")]
public AtomLink AtomLink { get; set; }
[...]
しかし、出力は次のとおりです。
<link xmlns="atom" href="http://dallas.example.com/rss.xml" rel="self" type="application/rss+xml" />
プレフィックス付きタグを生成する正しい方法は何ですか?