Castle.Components.DictionaryAdapter.Xml.CompiledXPathNode
namespace Castle.Components.DictionaryAdapter.Xml
{
public class CompiledXPathNode
{
public string Prefix { get; }
public string LocalName { get; }
public bool IsAttribute { get; }
public bool IsSelfReference { get; }
public bool IsSimple { get; }
public XPathExpression Value { get; }
public CompiledXPathNode NextNode { get; }
public CompiledXPathNode PreviousNode { get; }
public IList<CompiledXPathNode> Dependencies { get; }
}
}