Update of /cvsroot/mvp-xml/Common/v1/src/XPath
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8075/v1/src/XPath
Modified Files:
DynamicContext.cs
Log Message:
Index: DynamicContext.cs
===================================================================
RCS file: /cvsroot/mvp-xml/Common/v1/src/XPath/DynamicContext.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- DynamicContext.cs 16 Oct 2005 16:51:24 -0000 1.3
+++ DynamicContext.cs 19 Oct 2005 13:18:19 -0000 1.4
@@ -1,7 +1,7 @@
#region using
using System;
-using System.Collections.Generic;
+using System.Collections;
using System.Reflection;
using System.Text;
using System.Xml;
@@ -25,7 +25,7 @@
{
#region Private vars
- IDictionary<string, DynamicVariable> _variables = new Dictionary<string, DynamicVariable>();
+ Hashtable _variables = new Hashtable();
#endregion Private
@@ -84,7 +84,7 @@
#region Common Overrides
/// <summary>
- /// Implementation equal to <see cref="XsltContext.CompareDocument(string, string)"/>.
+ /// Implementation equal to <see cref="XsltCompileContext"/>.
/// </summary>
public override int CompareDocument(string baseUri, string nextbaseUri)
{
@@ -116,7 +116,7 @@
}
/// <summary>
- /// Same as <see cref="XsltContext.PreserveWhitespace(XPathNavigator)"/>.
+ /// Same as <see cref="XsltCompileContext"/>.
/// </summary>
public override bool PreserveWhitespace(XPathNavigator node)
{
@@ -124,7 +124,7 @@
}
/// <summary>
- /// Same as <see cref="XsltContext.Whitespace"/>.
+ /// Same as <see cref="XsltCompileContext"/>.
/// </summary>
public override bool Whitespace
{
|