IXmlNodeBuilder
An object implementing IXmlNodeBuilder is able to build
an XML representation of itself and any children.
namespace NUnit.
Framework.
Interfaces
{
public interface IXmlNodeBuilder
{
TNode ToXml(
bool recursive);
TNode AddToXml(
TNode parentNode,
bool recursive);
}
}