Search Results for

    Show / Hide Table of Contents

    Interface IXmlNodeBuilder

    An object implementing IXmlNodeBuilder is able to build an XML representation of itself and any children.

    Namespace: NUnit.Framework.Interfaces
    Assembly: nunit.framework.dll
    Syntax
    public interface IXmlNodeBuilder

    Methods

    View Source

    AddToXml(TNode, bool)

    Returns a TNode representing the current object after adding it as a child of the supplied parent node.

    Declaration
    TNode AddToXml(TNode parentNode, bool recursive)
    Parameters
    Type Name Description
    TNode parentNode

    The parent node.

    bool recursive

    If true, children are included, where applicable

    Returns
    Type Description
    TNode
    View Source

    ToXml(bool)

    Returns a TNode representing the current object.

    Declaration
    TNode ToXml(bool recursive)
    Parameters
    Type Name Description
    bool recursive

    If true, children are included where applicable

    Returns
    Type Description
    TNode

    A TNode representing the result

    • View Source
    In this article
    Back to top Generated by DocFX | Copyright (c) 2018- The NUnit Project - Licensed under CC BY-NC-SA 4.0