• API

    Show / Hide Table of Contents

    Class XMLWriter

    Filter to write an XML document from a SAX event stream.

    Inheritance
    System.Object
    XMLFilter
    XMLWriter
    Implements
    IXMLFilter
    IXMLReader
    IEntityResolver
    IDTDHandler
    IContentHandler
    IErrorHandler
    ILexicalHandler
    Inherited Members
    XMLFilter.Parent
    XMLFilter.SetFeature(String, Boolean)
    XMLFilter.GetFeature(String)
    XMLFilter.SetProperty(String, Object)
    XMLFilter.GetProperty(String)
    XMLFilter.EntityResolver
    XMLFilter.DTDHandler
    XMLFilter.ContentHandler
    XMLFilter.ErrorHandler
    XMLFilter.Parse(InputSource)
    XMLFilter.Parse(String)
    XMLFilter.ResolveEntity(String, String)
    XMLFilter.NotationDecl(String, String, String)
    XMLFilter.UnparsedEntityDecl(String, String, String, String)
    XMLFilter.SetDocumentLocator(ILocator)
    XMLFilter.StartPrefixMapping(String, String)
    XMLFilter.EndPrefixMapping(String)
    XMLFilter.SkippedEntity(String)
    XMLFilter.Warning(SAXParseException)
    XMLFilter.Error(SAXParseException)
    XMLFilter.FatalError(SAXParseException)
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: TagSoup
    Assembly: Lucene.Net.Benchmark.dll
    Syntax
    public class XMLWriter : XMLFilter, IXMLFilter, IXMLReader, IEntityResolver, IDTDHandler, IContentHandler, IErrorHandler, ILexicalHandler
    Remarks

    This class can be used by itself or as part of a SAX event stream: it takes as input a series of SAX2 ContentHandler events and uses the information in those events to write an XML document. Since this class is a filter, it can also pass the events on down a filter chain for further processing (you can use the XMLWriter to take a snapshot of the current state at any point in a filter chain), and it can be used directly as a ContentHandler for a SAX2 XMLReader.

    The client creates a document by invoking the methods for standard SAX2 events, always beginning with the StartDocument() method and ending with the EndDocument() method. There are convenience methods provided so that clients to not have to create empty attribute lists or provide empty strings as parameters; for example, the method invocation

        w.StartElement("foo");

    is equivalent to the regular SAX2 ContentHandler method

        w.StartElement("", "foo", "", new Attributes());

    Except that it is more efficient because it does not allocate a new empty attribute list each time. The following code will send a simple XML document to standard output:

        XMLWriter w = new XMLWriter();
        w.StartDocument();
        w.StartElement("greeting");
        w.Characters("Hello, world!");
        w.EndElement("greeting");
        w.EndDocument();

    The resulting document will look like this:

    <?xml version="1.0" standalone="yes"?>
    <greeting>Hello, world!</greeting>

    In fact, there is an even simpler convenience method, DataElement(String, String), designed for writing elements that contain only character data, so the code to generate the document could be shortened to

        XMLWriter w = new XMLWriter();
        w.StartDocument();
        w.DataElement("greeting", "Hello, world!");
        w.EndDocument();

    Whitespace

    According to the XML Recommendation, all whitespace in an XML document is potentially significant to an application, so this class never adds newlines or indentation. If you insert three elements in a row, as in

        w.DataElement("item", "1");
        w.DataElement("item", "2");
        w.DataElement("item", "3");

    you will end up with

        <item>1</item><item>3</item><item>3</item>

    You need to invoke one of the Characters methods explicitly to add newlines or indentation. Alternatively, you can use DataWriter, which is derived from this class -- it is optimized for writing purely data-oriented (or field-oriented) XML, and does automatic linebreaks and indentation (but does not support mixed content properly).

    Namespace Support

    The writer contains extensive support for XML Namespaces, so that a client application does not have to keep track of prefixes and supply xmlns attributes. By default, the XML writer will generate Namespace declarations in the form _NS1, _NS2, etc., wherever they are needed, as in the following example:

        w.StartDocument();
        w.EmptyElement("http://www.foo.com/ns/", "foo");
        w.EndDocument();

    The resulting document will look like this:

        <?xml version="1.0" standalone="yes"?>
        <_NS1:foo xmlns:_NS1="http://www.foo.com/ns/"/>

    In many cases, document authors will prefer to choose their own prefixes rather than using the (ugly) default names. The XML writer allows two methods for selecting prefixes:

    1. the qualified name
    2. the SetPrefix(String, String) method.

    Whenever the XML writer finds a new Namespace URI, it checks to see if a qualified (prefixed) name is also available; if so it attempts to use the name's prefix (as long as the prefix is not already in use for another Namespace URI).

    Before writing a document, the client can also pre-map a prefix to a Namespace URI with the setPrefix method:

        w.SetPrefix("http://www.foo.com/ns/", "foo");
        w.StartDocument();
        w.EmptyElement("http://www.foo.com/ns/", "foo");
        w.EndDocument();

    The resulting document will look like this:

        <?xml version="1.0" standalone="yes"?>
        <foo:foo xmlns:foo="http://www.foo.com/ns/"/>

    The default Namespace simply uses an empty string as the prefix:

        w.SetPrefix("http://www.foo.com/ns/", "");
        w.StartDocument();
        w.EmptyElement("http://www.foo.com/ns/", "foo");
        w.EndDocument();

    The resulting document will look like this:

        <?xml version="1.0" standalone="yes"?>
        <foo xmlns="http://www.foo.com/ns/"/>

    By default, the XML writer will not declare a Namespace until it is actually used. Sometimes, this approach will create a large number of Namespace declarations, as in the following example:

        <xml version="1.0" standalone="yes"?>
        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
        <rdf:Description about="http://www.foo.com/ids/books/12345">
        <dc:title xmlns:dc="http://www.purl.org/dc/">A Dark Night</dc:title>
        <dc:creator xmlns:dc="http://www.purl.org/dc/">Jane Smith</dc:title>
        <dc:date xmlns:dc="http://www.purl.org/dc/">2000-09-09</dc:title>
        </rdf:Description>
        </rdf:RDF>

    The "rdf" prefix is declared only once, because the RDF Namespace is used by the root element and can be inherited by all of its descendants; the "dc" prefix, on the other hand, is declared three times, because no higher element uses the Namespace. To solve this problem, you can instruct the XML writer to predeclare Namespaces on the root element even if they are not used there:

        w.ForceNSDecl("http://www.purl.org/dc/");

    Now, the "dc" prefix will be declared on the root element even though it's not needed there, and can be inherited by its descendants:

        <xml version="1.0" standalone="yes"?>
        <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
        xmlns:dc="http://www.purl.org/dc/">
        <rdf:Description about="http://www.foo.com/ids/books/12345">
        <dc:title>A Dark Night</dc:title>
        <dc:creator>Jane Smith</dc:title>
        <dc:date>2000-09-09</dc:title>
        </rdf:Description>
        </rdf:RDF>

    This approach is also useful for declaring Namespace prefixes that be used by qualified names appearing in attribute values or character data.

    Constructors

    | Improve this Doc View Source

    XMLWriter()

    Create a new XML writer.

    Write to standard output.

    Declaration
    public XMLWriter()
    | Improve this Doc View Source

    XMLWriter(IXMLReader)

    Create a new XML writer.

    Use the specified XML reader as the parent.

    Declaration
    public XMLWriter(IXMLReader xmlreader)
    Parameters
    Type Name Description
    IXMLReader xmlreader

    The parent in the filter chain, or null for no parent.

    | Improve this Doc View Source

    XMLWriter(IXMLReader, TextWriter)

    Create a new XML writer.

    Use the specified XML reader as the parent, and write to the specified writer.

    Declaration
    public XMLWriter(IXMLReader xmlreader, TextWriter writer)
    Parameters
    Type Name Description
    IXMLReader xmlreader

    The parent in the filter chain, or null for no parent.

    System.IO.TextWriter writer

    The output destination, or null to use standard output.

    | Improve this Doc View Source

    XMLWriter(TextWriter)

    Create a new XML writer.

    Write to the writer provided.

    Declaration
    public XMLWriter(TextWriter writer)
    Parameters
    Type Name Description
    System.IO.TextWriter writer

    The output destination, or null to use standard output.

    Fields

    | Improve this Doc View Source

    CDATA_SECTION_ELEMENTS

    Declaration
    public const string CDATA_SECTION_ELEMENTS = "cdata-section-elements"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    DOCTYPE_PUBLIC

    Declaration
    public const string DOCTYPE_PUBLIC = "doctype-public"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    DOCTYPE_SYSTEM

    Declaration
    public const string DOCTYPE_SYSTEM = "doctype-system"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    ENCODING

    Declaration
    public const string ENCODING = "encoding"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    INDENT

    Declaration
    public const string INDENT = "indent"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    MEDIA_TYPE

    Declaration
    public const string MEDIA_TYPE = "media-type"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    METHOD

    Declaration
    public const string METHOD = "method"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    OMIT_XML_DECLARATION

    Declaration
    public const string OMIT_XML_DECLARATION = "omit-xml-declaration"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    STANDALONE

    Declaration
    public const string STANDALONE = "standalone"
    Field Value
    Type Description
    System.String
    | Improve this Doc View Source

    VERSION

    Declaration
    public const string VERSION = "version"
    Field Value
    Type Description
    System.String

    Methods

    | Improve this Doc View Source

    Characters(Char[], Int32, Int32)

    Write character data. Pass the event on down the filter chain for further processing.

    Declaration
    public override void Characters(char[] ch, int start, int length)
    Parameters
    Type Name Description
    System.Char[] ch

    The array of characters to write.

    System.Int32 start

    The starting position in the array.

    System.Int32 length

    The number of characters to write.

    Overrides
    XMLFilter.Characters(Char[], Int32, Int32)
    Exceptions
    Type Condition
    SAXException

    If there is an error writing the characters, or if a handler further down the filter chain raises an exception.

    See Also
    Characters(System.Char[], System.Int32, System.Int32)
    | Improve this Doc View Source

    Characters(String)

    Write a string of character data, with XML escaping.

    This is a convenience method that takes an XML string, converts it to a character array, then invokes Characters(Char[], Int32, Int32).

    Declaration
    public virtual void Characters(string data)
    Parameters
    Type Name Description
    System.String data

    The character data.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the string, or if a handler further down the filter chain raises an exception.

    See Also
    Characters(Char[], Int32, Int32)
    | Improve this Doc View Source

    Comment(Char[], Int32, Int32)

    Declaration
    public virtual void Comment(char[] ch, int start, int length)
    Parameters
    Type Name Description
    System.Char[] ch
    System.Int32 start
    System.Int32 length
    | Improve this Doc View Source

    DataElement(String, String)

    Write an element with character data content but no attributes or Namespace URI.

    This is a convenience method to write a complete element with character data content, including the start tag and end tag. The method provides an empty string for the Namespace URI, and empty string for the qualified name, and an empty attribute list.

    This method invokes StartElement(String, String, String, IAttributes), followed by Characters(String), followed by EndElement(String, String, String).

    Declaration
    public virtual void DataElement(string localName, string content)
    Parameters
    Type Name Description
    System.String localName

    The element's local name.

    System.String content

    The character data content.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the empty tag, or if a handler further down the filter chain raises an exception.

    See Also
    StartElement(String, String, String, IAttributes)
    Characters(String)
    EndElement(String, String, String)
    | Improve this Doc View Source

    DataElement(String, String, String)

    Write an element with character data content but no attributes.

    This is a convenience method to write a complete element with character data content, including the start tag and end tag. This method provides an empty string for the qname and an empty attribute list.

    This method invokes StartElement(String, String, String, IAttributes), followed by Characters(String), followed by EndElement(String, String, String).

    Declaration
    public virtual void DataElement(string uri, string localName, string content)
    Parameters
    Type Name Description
    System.String uri

    The element's Namespace URI.

    System.String localName

    The element's local name.

    System.String content

    The character data content.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the empty tag, or if a handler further down the filter chain raises an exception.

    See Also
    StartElement(String, String, String, IAttributes)
    Characters(String)
    EndElement(String, String, String)
    | Improve this Doc View Source

    DataElement(String, String, String, IAttributes, String)

    Write an element with character data content.

    This is a convenience method to write a complete element with character data content, including the start tag and end tag.

    This method invokes StartElement(String, String, String, IAttributes), followed by Characters(String), followed by EndElement(String, String, String).

    Declaration
    public virtual void DataElement(string uri, string localName, string qName, IAttributes atts, string content)
    Parameters
    Type Name Description
    System.String uri

    The element's Namespace URI.

    System.String localName

    The element's local name.

    System.String qName

    The element's default qualified name.

    IAttributes atts

    The element's attributes.

    System.String content

    The character data content.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the empty tag, or if a handler further down the filter chain raises an exception.

    See Also
    StartElement(String, String, String, IAttributes)
    Characters(String)
    EndElement(String, String, String)
    | Improve this Doc View Source

    EmptyElement(String)

    Add an empty element without a Namespace URI, qname or attributes.

    This method will supply an empty string for the qname, and empty string for the Namespace URI, and an empty attribute list. It invokes EmptyElement(String, String, String, IAttributes) directly.

    Declaration
    public virtual void EmptyElement(string localName)
    Parameters
    Type Name Description
    System.String localName

    The element's local name.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the empty tag, or if a handler further down the filter chain raises an exception.

    See Also
    EmptyElement(String, String, String, IAttributes)
    | Improve this Doc View Source

    EmptyElement(String, String)

    Add an empty element without a qname or attributes.

    This method will supply an empty string for the qname and an empty attribute list. It invokes EmptyElement(String, String, String, IAttributes) directly.

    Declaration
    public virtual void EmptyElement(string uri, string localName)
    Parameters
    Type Name Description
    System.String uri

    The element's Namespace URI.

    System.String localName

    The element's local name.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the empty tag, or if a handler further down the filter chain raises an exception.

    See Also
    EmptyElement(String, String, String, IAttributes)
    | Improve this Doc View Source

    EmptyElement(String, String, String, IAttributes)

    Write an empty element. This method writes an empty element tag rather than a start tag followed by an end tag. Both a StartElement(String, String, String, IAttributes) and an EndElement(String, String, String) event will be passed on down the filter chain.

    Declaration
    public virtual void EmptyElement(string uri, string localName, string qName, IAttributes atts)
    Parameters
    Type Name Description
    System.String uri

    The element's Namespace URI, or the empty string if the element has no Namespace or if Namespace processing is not being performed.

    System.String localName

    The element's local name (without prefix). This parameter must be provided.

    System.String qName

    The element's qualified name (with prefix), or the empty string if none is available. This parameter is strictly advisory: the writer may or may not use the prefix attached.

    IAttributes atts

    The element's attribute list.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the empty tag, or if a handler further down the filter chain raises an exception.

    See Also
    StartElement(String)
    StartElement(String, String)
    StartElement(String, String, String, IAttributes)
    EndElement(String)
    EndElement(String, String)
    EndElement(String, String, String)
    | Improve this Doc View Source

    EndCDATA()

    Declaration
    public virtual void EndCDATA()
    | Improve this Doc View Source

    EndDocument()

    Write a newline at the end of the document. Pass the event on down the filter chain for further processing.

    Declaration
    public override void EndDocument()
    Overrides
    XMLFilter.EndDocument()
    Exceptions
    Type Condition
    SAXException

    If there is an error writing the newline, or if a handler further down the filter chain raises an exception.

    See Also
    EndDocument()
    | Improve this Doc View Source

    EndDTD()

    Declaration
    public virtual void EndDTD()
    | Improve this Doc View Source

    EndElement(String)

    End an element without a Namespace URI or qname.

    This method will supply an empty string for the qName and an empty string for the Namespace URI. It invokes EndElement(String, String, String) directly.

    Declaration
    public virtual void EndElement(string localName)
    Parameters
    Type Name Description
    System.String localName

    The element's local name.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the end tag, or if a handler further down the filter chain raises an exception.

    See Also
    EndElement(String, String, String)
    | Improve this Doc View Source

    EndElement(String, String)

    End an element without a qname.

    This method will supply an empty string for the qName. It invokes EndElement(String, String, String) directly.

    Declaration
    public virtual void EndElement(string uri, string localName)
    Parameters
    Type Name Description
    System.String uri

    The element's Namespace URI.

    System.String localName

    The element's local name.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the end tag, or if a handler further down the filter chain raises an exception.

    See Also
    EndElement(String, String, String)
    | Improve this Doc View Source

    EndElement(String, String, String)

    Write an end tag. Pass the event on down the filter chain for further processing.

    Declaration
    public override void EndElement(string uri, string localName, string qName)
    Parameters
    Type Name Description
    System.String uri

    The Namespace URI, or the empty string if none is available.

    System.String localName

    The element's local (unprefixed) name (required).

    System.String qName

    The element's qualified (prefixed) name, or the empty string is none is available. This method will use the qName as a template for generating a prefix if necessary, but it is not guaranteed to use the same qName.

    Overrides
    XMLFilter.EndElement(String, String, String)
    Exceptions
    Type Condition
    SAXException

    If there is an error writing the end tag, or if a handler further down the filter chain raises an exception.

    See Also
    EndElement(System.String, System.String, System.String)
    | Improve this Doc View Source

    EndEntity(String)

    Declaration
    public virtual void EndEntity(string name)
    Parameters
    Type Name Description
    System.String name
    | Improve this Doc View Source

    Flush()

    Flush the output.

    This method flushes the output stream. It is especially useful when you need to make certain that the entire document has been written to output but do not want to close the output stream.

    This method is invoked automatically by the EndDocument() method after writing a document.

    Declaration
    public virtual void Flush()
    See Also
    Reset()
    | Improve this Doc View Source

    ForceNSDecl(String)

    Force a Namespace to be declared on the root element.

    By default, the XMLWriter will declare only the Namespaces needed for an element; as a result, a Namespace may be declared many places in a document if it is not used on the root element.

    This method forces a Namespace to be declared on the root element even if it is not used there, and reduces the number of xmlns attributes in the document.

    Declaration
    public virtual void ForceNSDecl(string uri)
    Parameters
    Type Name Description
    System.String uri

    The Namespace URI to declare.

    See Also
    ForceNSDecl(String, String)
    SetPrefix(String, String)
    | Improve this Doc View Source

    ForceNSDecl(String, String)

    Force a Namespace declaration with a preferred prefix.

    This is a convenience method that invokes SetPrefix(String, String) then ForceNSDecl(String).

    Declaration
    public virtual void ForceNSDecl(string uri, string prefix)
    Parameters
    Type Name Description
    System.String uri

    The Namespace URI to declare on the root element.

    System.String prefix

    The preferred prefix for the Namespace, or "" for the default Namespace.

    See Also
    SetPrefix(String, String)
    ForceNSDecl(String)
    | Improve this Doc View Source

    GetOutputProperty(String)

    Declaration
    public virtual string GetOutputProperty(string key)
    Parameters
    Type Name Description
    System.String key
    Returns
    Type Description
    System.String
    | Improve this Doc View Source

    GetPrefix(String)

    Get the current or preferred prefix for a Namespace URI.

    Declaration
    public virtual string GetPrefix(string uri)
    Parameters
    Type Name Description
    System.String uri

    The Namespace URI.

    Returns
    Type Description
    System.String

    The preferred prefix, or "" for the default Namespace.

    See Also
    SetPrefix(String, String)
    | Improve this Doc View Source

    IgnorableWhitespace(Char[], Int32, Int32)

    Write ignorable whitespace. Pass the event on down the filter chain for further processing.

    Declaration
    public override void IgnorableWhitespace(char[] ch, int start, int length)
    Parameters
    Type Name Description
    System.Char[] ch

    The array of characters to write.

    System.Int32 start

    The starting position in the array.

    System.Int32 length

    The number of characters to write.

    Overrides
    XMLFilter.IgnorableWhitespace(Char[], Int32, Int32)
    Exceptions
    Type Condition
    SAXException

    If there is an error writing the whitespace, or if a handler further down the filter chain raises an exception.

    See Also
    IgnorableWhitespace(System.Char[], System.Int32, System.Int32)
    | Improve this Doc View Source

    ProcessingInstruction(String, String)

    Write a processing instruction. Pass the event on down the filter chain for further processing.

    Declaration
    public override void ProcessingInstruction(string target, string data)
    Parameters
    Type Name Description
    System.String target

    The PI target.

    System.String data

    The PI data.

    Overrides
    XMLFilter.ProcessingInstruction(String, String)
    Exceptions
    Type Condition
    SAXException

    If there is an error writing the PI, or if a handler further down the filter chain raises an exception.

    See Also
    ProcessingInstruction(System.String, System.String)
    | Improve this Doc View Source

    Reset()

    Reset the writer.

    This method is especially useful if the writer throws an exception before it is finished, and you want to reuse the writer for a new document. It is usually a good idea to invoke Flush() before resetting the writer, to make sure that no output is lost.

    This method is invoked automatically by the StartDocument() method before writing a new document.

    Note: this method will not clear the prefix or URI information in the writer or the selected output writer.

    Declaration
    public virtual void Reset()
    See Also
    Flush()
    | Improve this Doc View Source

    SetOutput(TextWriter)

    Set a new output destination for the document.

    Declaration
    public virtual void SetOutput(TextWriter writer)
    Parameters
    Type Name Description
    System.IO.TextWriter writer

    The output destination, or null to use standard output.

    See Also
    Flush()
    | Improve this Doc View Source

    SetOutputProperty(String, String)

    Declaration
    public virtual void SetOutputProperty(string key, string value)
    Parameters
    Type Name Description
    System.String key
    System.String value
    | Improve this Doc View Source

    SetPrefix(String, String)

    Specify a preferred prefix for a Namespace URI.

    Note that this method does not actually force the Namespace to be declared; to do that, use the ForceNSDecl(String) method as well.

    Declaration
    public virtual void SetPrefix(string uri, string prefix)
    Parameters
    Type Name Description
    System.String uri

    The Namespace URI.

    System.String prefix

    The preferred prefix, or "" to select the default Namespace.

    See Also
    GetPrefix(String)
    ForceNSDecl(String)
    ForceNSDecl(String, String)
    | Improve this Doc View Source

    StartCDATA()

    Declaration
    public virtual void StartCDATA()
    | Improve this Doc View Source

    StartDocument()

    Write the XML declaration at the beginning of the document. Pass the event on down the filter chain for further processing.

    Declaration
    public override void StartDocument()
    Overrides
    XMLFilter.StartDocument()
    Exceptions
    Type Condition
    SAXException

    If there is an error writing the XML declaration, or if a handler further down the filter chain raises an exception.

    See Also
    StartDocument()
    | Improve this Doc View Source

    StartDTD(String, String, String)

    Declaration
    public virtual void StartDTD(string name, string publicid, string systemid)
    Parameters
    Type Name Description
    System.String name
    System.String publicid
    System.String systemid
    | Improve this Doc View Source

    StartElement(String)

    Start a new element without a qname, attributes or a Namespace URI.

    This method will provide an empty string for the Namespace URI, and empty string for the qualified name, and a default empty attribute list. It invokes

    startElement(string, string, string, Attributes)}

    directly.

    Declaration
    public virtual void StartElement(string localName)
    Parameters
    Type Name Description
    System.String localName

    The element's local name.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the start tag, or if a handler further down the filter chain raises an exception.

    See Also
    StartElement(String, String, String, IAttributes)
    | Improve this Doc View Source

    StartElement(String, String)

    Start a new element without a qname or attributes.

    This method will provide a default empty attribute list and an empty string for the qualified name. It invokes StartElement(String, String, String, IAttributes) directly.

    Declaration
    public virtual void StartElement(string uri, string localName)
    Parameters
    Type Name Description
    System.String uri

    The element's Namespace URI.

    System.String localName

    The element's local name.

    Exceptions
    Type Condition
    SAXException

    If there is an error writing the start tag, or if a handler further down the filter chain raises an exception.

    See Also
    StartElement(String, String, String, IAttributes)
    | Improve this Doc View Source

    StartElement(String, String, String, IAttributes)

    Write a start tag. Pass the event on down the filter chain for further processing.

    Declaration
    public override void StartElement(string uri, string localName, string qName, IAttributes atts)
    Parameters
    Type Name Description
    System.String uri

    The Namespace URI, or the empty string if none is available.

    System.String localName

    The element's local (unprefixed) name (required).

    System.String qName

    The element's qualified (prefixed) name, or the empty string is none is available. This method will use the qName as a template for generating a prefix if necessary, but it is not guaranteed to use the same qName.

    IAttributes atts

    The element's attribute list (must not be null).

    Overrides
    XMLFilter.StartElement(String, String, String, IAttributes)
    Exceptions
    Type Condition
    SAXException

    If there is an error writing the start tag, or if a handler further down the filter chain raises an exception.

    See Also
    StartElement(System.String, System.String, System.String, IAttributes)
    | Improve this Doc View Source

    StartEntity(String)

    Declaration
    public virtual void StartEntity(string name)
    Parameters
    Type Name Description
    System.String name

    Implements

    IXMLFilter
    IXMLReader
    IEntityResolver
    IDTDHandler
    IContentHandler
    IErrorHandler
    ILexicalHandler

    See Also

    IXMLFilter
    IContentHandler
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 Licensed to the Apache Software Foundation (ASF)