U4-1611 - fix xpath special chars escaping issues in published content store

This commit is contained in:
Stephan
2013-02-14 16:23:56 -01:00
parent 6a6b82d1e8
commit 8de579083c
7 changed files with 631 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
// source: mvpxml.codeplex.com
namespace Umbraco.Core.Xml
{
internal class XPathVariable
{
public string Name { get; set; }
public string Value { get; set; }
public XPathVariable(string name, string value)
{
Name = name;
Value = value;
}
}
}