GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlWriter 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 virtual void WriteStartElement( 
       string name
    )

    Parameters

    name
    the local name for the element; must not be null
    Remarks
    This starts a new element in the DefaultNamespace. You need to make a corresponding call to WriteEndElement when you are finished writing this element. This method will write to the XmlWriter if it is available or else it will create an XML element as a child of the WriterElement. If we are constructing a DOM instead of writing to a stream, this sets WriterElement to be the newly started XmlElement.
    See Also