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

    Parameters

    type
    the Type for which we seek an IGoXmlTransformer
    parent
    an Object to be passed to IGoXmlTransformer.ConsumeChild
    child
    an Object to be passed to IGoXmlTransformer.ConsumeChild
    Remarks
    This searches for an IGoXmlTransformer starting at the type and proceeding up the type hierarchy. The parent and child parameters are passed to the method call. This method is practically never overridden.
    See Also