使用包含双引号的字符串属性序列化对象

时间:2013-10-30 07:26:13

标签: c# xml serialization

我有一个对象,它有一个字符串属性,其值为双引号。我需要序列化这个对象,然后使用该XML。我不会反序列化这个xml。

我无法在XML文件中获取正确的内容。让我用代码示例解释一下:

[Serializable]
public class Test {
    [XmlElement]
    public string obj { get; set; }
}
class Program {
    static void Main(string[] args) {

        var st ="Priority == \"1\"";
        Test test = new Test();          
        test.obj = st;
        //Serialize this object
        XmlSerializer xsSubmit = new XmlSerializer(typeof(Test));
        StringWriter sww = new StringWriter();
        XmlWriter writer = XmlWriter.Create(sww, new XmlWriterSettings {
            OmitXmlDeclaration = true
        });
        var ns = new XmlSerializerNamespaces();//just to make things simpler here
        ns.Add(string.Empty, string.Empty);
        xsSubmit.Serialize(writer, test, ns);
        //My XML
        var xml = sww.ToString();
    }
}

我需要我的xml:

<Test><obj>Priority==&quot;1&quot;</obj></Test>

我现在得到:

<Test><obj>Priority==\"1\"</obj></Test>

我甚至尝试使用var html = HttpUtility.HtmlEncode(st);将字符串编码为HTML 在这种情况下,变量html的格式正确,但在序列化时我得到:

<Test><obj>Priority==&amp;quot;1&amp;quot;</obj></Test>

请寻求帮助。

1 个答案:

答案 0 :(得分:0)

代码没有问题。

我实际上得到了<Test><obj>Priority=="1"</obj></Test>,这很好。我犯的错误是我正在读取调试器上的值。当我在某处写它时,内容的格式正确。

"没有转换为&quot;,因为双引号在XML文档中已被接受。在这种情况下,我可以使用它!