GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlTransformer Class / WriteStartElement(String) Method
the local name for the element; must not be null
In This Topic
    WriteStartElement(String) Method
    In This Topic
    Start a new XML element, with the name given by name.
    Syntax
    public void WriteStartElement( 
       string name
    )

    Parameters

    name
    the local name for the element; must not be null
    Remarks
    You need to make a corresponding call to WriteEndElement when you are finished writing this element. If we are constructing a DOM instead of writing to a stream, this sets WriterElement to be the newly started XmlElement.
    See Also