C# Класс HandCoded.Xsl.Transformation

The Transformation class is a wrapper around the XSL APIs that allows a XslTransform to be created from a file and applied to DOM Document.
Показать файл Открыть проект

Открытые методы

Метод Описание
Transform ( XmlNode node ) : XmlDocument

Applies the XSL transformation to the indicated DOM XmlNode and returns the resulting document.

Transformation ( string filename ) : System

Constructs a Transformation instance using the XSL source in the specified file.

Приватные методы

Метод Описание
CloneNode ( XmlDocument document, XmlNode node ) : XmlNode

Makes copy of the indicated XmlNode and its child nodes.

CreateFragment ( XmlNode node ) : XmlDocument

Copies the XmlNode into a new XmlDocument.

Описание методов

Transform() публичный Метод

Applies the XSL transformation to the indicated DOM XmlNode and returns the resulting document.
public Transform ( XmlNode node ) : XmlDocument
node System.Xml.XmlNode The source DOM .
Результат System.Xml.XmlDocument

Transformation() публичный Метод

Constructs a Transformation instance using the XSL source in the specified file.
public Transformation ( string filename ) : System
filename string The XSL filename.
Результат System