NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XslTransform.Transform

Transforms the specified XML data using the loaded XSL stylesheet and outputs the results.

Overload List

Transforms the XML data in the specified XmlNavigator and outputs the result to an XmlWriter.

[Visual Basic] Overloads Public Sub Transform(XmlNavigator, NSParamList, XmlWriter)
[C#] public void Transform(XmlNavigator, NSParamList, XmlWriter);
[C++] public: void Transform(XmlNavigator*, NSParamList, XmlWriter);
[JScript] public function Transform(XmlNavigator, NSParamList, XmlWriter);

Transforms the XML data in the specified XmlNavigator and outputs the result to an XmlReader.

[Visual Basic] Overloads Public Function Transform(XmlNavigator, NSParamList) As XmlReader
[C#] public XmlReader Transform(XmlNavigator, NSParamList);
[C++] public: XmlReader* Transform(XmlNavigator*, NSParamList);
[JScript] public function Transform(XmlNavigator, NSParamList) : XmlReader;

Transforms the XML data in the specified XmlNavigator and outputs the result to a TextWriter.

[Visual Basic] Overloads Public Sub Transform(XmlNavigator, NSParamList, TextWriter)
[C#] public void Transform(XmlNavigator, NSParamList, TextWriter);
[C++] public: void Transform(XmlNavigator*, NSParamList, TextWriter);
[JScript] public function Transform(XmlNavigator, NSParamList, TextWriter);

Transforms the XML data in the specified XmlNavigator and outputs the result to a Stream.

[Visual Basic] Overloads Public Sub Transform(XmlNavigator, NSParamList, Stream)
[C#] public void Transform(XmlNavigator, NSParamList, Stream);
[C++] public: void Transform(XmlNavigator*, NSParamList, Stream);
[JScript] public function Transform(XmlNavigator, NSParamList, Stream);

See Also

XslTransform Class | XslTransform Members | System.NewXml.Xsl Namespace