GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlWriter Class / GenerateObject Method
an Object; if null this method does nothing
In This Topic
    GenerateObject Method
    In This Topic
    This produces an element for an object, including any nested elements that help represent the rendering.
    Syntax
    public virtual void GenerateObject( 
       object obj
    )

    Parameters

    obj
    an Object; if null this method does nothing
    Remarks
    If InvokeSkipGeneration returns true, no element is generated. Otherwise this starts writing an element by calling InvokeGenerateElement, InvokeGenerateAttributes, InvokeGenerateBody, and the InvokeGenerateElementFinish. If InvokeGenerateElement returned true to indicate that it started a new element, this method will call WriteEndElement in order to finish it. You probably do not need to override this method.
    See Also