GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlWriter Class / WriteTextBody Method
the text to be written
In This Topic
    WriteTextBody Method (GoXmlWriter)
    In This Topic
    Write out a string as the body of an element.
    Syntax
    public virtual void WriteTextBody( 
       string s
    )

    Parameters

    s
    the text to be written
    Remarks
    This method will write to the XmlWriter if it is available or else it will create an XML text node in the WriterElement. If s is null, nothing is written and no XmlText node is created.
    See Also