From: Oleg T. <he...@us...> - 2005-11-22 12:11:10
|
Update of /cvsroot/mvp-xml/EXSLT/v2/src/Exslt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19633/v2/src/Exslt Modified Files: ExsltTransform.cs Log Message: Index: ExsltTransform.cs =================================================================== RCS file: /cvsroot/mvp-xml/EXSLT/v2/src/Exslt/ExsltTransform.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- ExsltTransform.cs 22 Nov 2005 11:11:18 -0000 1.4 +++ ExsltTransform.cs 22 Nov 2005 12:10:51 -0000 1.5 @@ -240,7 +240,7 @@ #region Load() method Overloads /// <summary> /// Loads and compiles the style sheet contained in the <see cref="IXPathNavigable"/> object. - /// See also <see cref="XslCompiledTransform(IXPathNavigable)"/>. + /// See also <see cref="XslCompiledTransform.Load(IXPathNavigable)"/>. /// </summary> /// <param name="stylesheet">An object implementing the <see cref="IXPathNavigable"/> interface. /// In the Microsoft .NET Framework, this can be either an <see cref="XmlNode"/> (typically an <see cref="XmlDocument"/>), @@ -249,14 +249,14 @@ /// <summary> /// Loads and compiles the style sheet located at the specified URI. - /// See also <see cref="XslCompiledTransform(String)"/>. + /// See also <see cref="XslCompiledTransform.Load(String)"/>. /// </summary> /// <param name="stylesheetUri">The URI of the style sheet.</param> public void Load(string stylesheetUri) { this.xslTransform.Load(stylesheetUri); } /// <summary> /// Compiles the style sheet contained in the <see cref="XmlReader"/>. - /// See also <see cref="XslCompiledTransform(XmlReader)"/>. + /// See also <see cref="XslCompiledTransform.Load(XmlReader)"/>. /// </summary> /// <param name="stylesheet">An <see cref="XmlReader"/> containing the style sheet.</param> public void Load(XmlReader stylesheet) { this.xslTransform.Load(stylesheet); } @@ -265,13 +265,13 @@ /// Compiles the XSLT style sheet contained in the <see cref="IXPathNavigable"/>. /// The <see cref="XmlResolver"/> resolves any XSLT <c>import</c> or <c>include</c> elements and the /// XSLT settings determine the permissions for the style sheet. - /// See also <see cref="XslCompiledTransform(IXPathNavigable, XsltSettings, XmlResolver)"/>. + /// See also <see cref="XslCompiledTransform.Load(IXPathNavigable, XsltSettings, XmlResolver)"/>. /// </summary> /// <param name="stylesheet">An object implementing the <see cref="IXPathNavigable"/> interface. /// In the Microsoft .NET Framework, this can be either an <see cref="XmlNode"/> (typically an <see cref="XmlDocument"/>), /// or an <see cref="XPathDocument"/> containing the style sheet.</param> /// <param name="settings">The <see cref="XsltSettings"/> to apply to the style sheet. - /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"> setting is applied.</param> + /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"/> setting is applied.</param> /// <param name="stylesheetResolver">The <see cref="XmlResolver"/> used to resolve any /// style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is a /// null reference (Nothing in Visual Basic), external resources are not resolved.</param> @@ -284,11 +284,11 @@ /// Loads and compiles the XSLT style sheet specified by the URI. /// The <see cref="XmlResolver"/> resolves any XSLT <c>import</c> or <c>include</c> elements and the /// XSLT settings determine the permissions for the style sheet. - /// See also <see cref="XslCompiledTransform(string, XsltSettings, XmlResolver)"/>. + /// See also <see cref="XslCompiledTransform.Load(string, XsltSettings, XmlResolver)"/>. /// </summary> /// <param name="stylesheetUri">The URI of the style sheet.</param> /// <param name="settings">The <see cref="XsltSettings"/> to apply to the style sheet. - /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"> setting is applied.</param> + /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"/> setting is applied.</param> /// <param name="stylesheetResolver">The <see cref="XmlResolver"/> used to resolve any /// style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is a /// null reference (Nothing in Visual Basic), external resources are not resolved.</param> @@ -301,11 +301,11 @@ /// Compiles the XSLT style sheet contained in the <see cref="XmlReader"/>. /// The <see cref="XmlResolver"/> resolves any XSLT <c>import</c> or <c>include</c> elements and the /// XSLT settings determine the permissions for the style sheet. - /// See also <see cref="XslCompiledTransform(XmlReader, XsltSettings, XmlResolver)"/>. + /// See also <see cref="XslCompiledTransform.Load(XmlReader, XsltSettings, XmlResolver)"/>. /// </summary> /// <param name="stylesheet">The <see cref="XmlReader"/> containing the style sheet.</param> /// <param name="settings">The <see cref="XsltSettings"/> to apply to the style sheet. - /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"> setting is applied.</param> + /// If this is a null reference (Nothing in Visual Basic), the <see cref="XsltSettings.Default"/> setting is applied.</param> /// <param name="stylesheetResolver">The <see cref="XmlResolver"/> used to resolve any /// style sheets referenced in XSLT <c>import</c> and <c>include</c> elements. If this is a /// null reference (Nothing in Visual Basic), external resources are not resolved.</param> |