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

    Parameters

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

    Return Value

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