This topic has not yet been rated - Rate this topic

XmlWriterSettings Class

Specifies a set of features to support on the XmlWriter object created by the XmlWriter.Create method.

System.Object
  System.Xml.XmlWriterSettings

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)
public sealed class XmlWriterSettings

The XmlWriterSettings type exposes the following members.

  Name Description
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 XmlWriterSettings Initializes a new instance of the XmlWriterSettings class.
Top
  Name Description
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 CheckCharacters Gets or sets a value indicating whether to do character checking.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 CloseOutput Gets or sets a value indicating whether the XmlWriter should also close the underlying stream or TextWriter when the Close method is called.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 ConformanceLevel Gets or sets the level of conformance which the XmlWriter complies with.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 Encoding Gets or sets the text encoding to use.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 Indent Gets or sets a value indicating whether to indent elements.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IndentChars Gets or sets the character string to use when indenting. This setting is used when the Indent property is set to true.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 NamespaceHandling Gets or sets the NamespaceHandling enumeration used to specify whether to remove duplicate namespace declarations in the XmlWriter. For the duplicate namespace to be removed, the prefix and the namespace have to match.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 NewLineChars Gets or sets the character string to use for line breaks.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 NewLineHandling Gets or sets a value indicating whether to normalize line breaks in the output.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 NewLineOnAttributes Gets or sets a value indicating whether to write attributes on a new line.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 OmitXmlDeclaration Gets or sets a value indicating whether to write an XML declaration.
Top
  Name Description
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 Clone Creates a copy of the XmlWriterSettings instance.
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by Silverlight for Windows Phone Supported by Xbox 360 Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method Supported by Silverlight for Windows Phone Supported by Xbox 360 MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 Reset Resets the members of the settings class to their default values.
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 ToString Returns a string that represents the current object. (Inherited from Object.)
Top

In the Microsoft .NET Framework 2.0 release, the Create method is the preferred mechanism for obtaining XmlWriter instances. The Create method uses the XmlWriterSettings class to specify which features to implement in the created XmlWriter object.

For more information and code examples, see XML Data.



StringBuilder output = new StringBuilder();

    XmlWriterSettings settings = new XmlWriterSettings();
    settings.Indent = true;
    settings.OmitXmlDeclaration = true;
    settings.NewLineOnAttributes = true;

    using (XmlWriter writer = XmlWriter.Create(output, settings))
    {
    writer.WriteStartElement("order");
    writer.WriteAttributeString("orderID", "367A54");
    writer.WriteAttributeString("date", "2001-05-03");
    writer.WriteElementString("price", "19.95");
    writer.WriteEndElement();

    writer.Flush();
}

OutputTextBlock.Text = output.ToString();


Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ