System.Xml.XmlWriter.Create 方法 (Stream)

方法描述

使用指定的流创建一个新的 XmlWriter 实例。

语法定义(C# System.Xml.XmlWriter.Create 方法 (Stream) 的用法)

public static XmlWriter Create(
	Stream output
)

参数/返回值

参数值/返回值 参数类型/返回类型 参数描述/返回描述
output System-IO-Stream 要写入的流。XmlWriter 编写 XML 1.0 文本语法并将其追加到指定的流中。
返回值 System.Xml.XmlWriter 一个 XmlWriter 对象。

提示和注释

使用具有默认设置的 XmlWriterSettings 对象创建编写器。 如果您希望指定要在创建的编写器上支持的某些功能,请使用重载(该重载将 XmlWriterSettings 对象作为自己的一个参数)并传入设置正确的 XmlWriterSettings 对象。

System.Xml.XmlWriter.Create 方法 (Stream)例子

下面的示例利用已定义的设置创建一个 XmlWriter 对象。

using System;
using System.IO;
using System.Xml;
using System.Text;

public class Sample {

  public static void Main() {

    XmlWriter writer = null;

    try {

       // Create an XmlWriterSettings object with the correct options. 
       XmlWriterSettings settings = new XmlWriterSettings();
       settings.Indent = true;
       settings.IndentChars = ("\t");
       settings.OmitXmlDeclaration = true;

       // Create the XmlWriter object and write some content.
       writer = XmlWriter.Create("data.xml", settings);
       writer.WriteStartElement("book");
       writer.WriteElementString("item", "tesing");
       writer.WriteEndElement();
	
       writer.Flush();

     } 
     finally  {
        if (writer != null)
          writer.Close();
     }
  } 
}

异常

异常 异常描述
ArgumentNullException stream 值为 null。

命名空间

namespace: System.Xml

程序集: System.Xml(在 System.Xml.dll 中)

版本信息

.NET Framework 受以下版本支持:4、3.5、3.0、2.0 .NET Framework Client Profile 受以下版本支持:4、3.5 SP1 受以下版本支持:

适用平台

Windows 7, Windows Vista SP1 或更高版本, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008(不支持服务器核心), Windows Server 2008 R2(支持 SP1 或更高版本的服务器核心), Windows Server 2003 SP2 .NET Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。