GoDigram for .NET Framework and .NET Core
Northwoods.Go.Xml Namespace / GoXmlReader Class / UseDOM Property
In This Topic
    UseDOM Property
    In This Topic
    Gets or sets whether the IGoXmlTransformers should use the XmlDocument or the XmlReader.
    Syntax
    public bool UseDOM {get; set;}

    Property Value

    This defaults to false; set this to true before calling Consume(XmlReader) if you need to be able to "look-ahead" in the XML by traversing the DOM. This value is automatically set to true if you call Consume(XmlDocument).
    Remarks
    The DOM is typically used to make it easier to handle references between objects.
    See Also