简体   繁体   中英

How to switch between XmlTextWriter and XmlWriter?

Microsoft recommend to use XmlWriter instead of XmlTextWriter https://msdn.microsoft.com/en-us/library/system.xml.xmltextwriter(v=vs.110).aspx

public string Serialize(BackgroundJobInfo info)
{
    var stringBuilder = new StringBuilder();

    using (var stringWriter = new StringWriter(stringBuilder, CultureInfo.InvariantCulture))
    {
        var writer = new XmlTextWriter(stringWriter);
        new DataContractSerializer(typeof(BackgroundJobInfo)).WriteObject(writer, info);
    }

    return stringBuilder.ToString();
}

How to correctly use XmlWriter in my method instead of XmlTextWriter ?

I'd use the factory method Create on XmlWriter class like:

var stringBuilder = new StringBuilder();
using(var writer = XmlWriter.Create(stringBuilder))
{
  new DataContractSerializer(typeof(BackgroundJobInfo)).WriteObject(writer, info)
}

Or you can do it without XmlWriter

public static string Serialize(BackgroundJobInfo info)
{
    string result = String.Empty;

    using (var ms = new MemoryStream())
    {
        var sw = new StreamWriter(ms);

        DataContractSerializer dcs = new DataContractSerializer(typeof(BackgroundJobInfo));
        dcs.WriteObject(ms, info);
        sw.Flush();

        ms.Position = 0;
        var sr = new StreamReader(ms);
        result = sr.ReadToEnd();               
    }             

    return result;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM