GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlWriter Class / InvokeGenerateElement Method
the Type for which we seek an IGoXmlTransformer
an Object to be passed to GenerateElement
In This Topic
    InvokeGenerateElement Method
    In This Topic
    Call the GenerateElement method of the IGoXmlTransformer that is associated with the given type.
    Syntax
    public virtual bool InvokeGenerateElement( 
       Type type,
       object obj
    )

    Parameters

    type
    the Type for which we seek an IGoXmlTransformer
    obj
    an Object to be passed to GenerateElement

    Return Value

    True if an element was started. This returns the result of calling GenerateElement. If no transformer is found, this returns false. This method is practically never overridden.
    Remarks
    This searches for an IGoXmlTransformer starting at the type and proceeding up the type hierarchy. The obj parameter is passed to method call.
    See Also