本文整理汇总了C#中com.ximpleware.VTDNav.loadCurrentNode方法的典型用法代码示例。如果您正苦于以下问题:C# VTDNav.loadCurrentNode方法的具体用法?C# VTDNav.loadCurrentNode怎么用?C# VTDNav.loadCurrentNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.ximpleware.VTDNav
的用法示例。
在下文中一共展示了VTDNav.loadCurrentNode方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: evalNodeSet
public override int evalNodeSet(VTDNav vn)
{
switch (opCode)
{
case FuncName.CURRENT:
if (state == START)
{
vn.loadCurrentNode();
state = END;
return vn.getCurrentIndex2();
}
else
{
return -1;
}
// break;
case FuncName.DOCUMENT:
if (argCount1 == 1)
{
if (!argumentList.e.NodeSet)
{
if (state == START)
{
String s = argumentList.e.evalString(vn);
if (s.Length == 0)
{
newVN = xslVN;
newVN.context[0] = -1;
}
else if (vg.parseFile(s, true))
{
newVN = vg.getNav();
newVN.context[0] = -1;
newVN.URIName = s;
}
else
{
state = END;
return -1;
}
state = END;
return 0;
}
else
{
return -1;
}
}
else
{
try
{
if (state != END)
{
a = argumentList.e.evalNodeSet(vn);
if (a != -1)
{
String s = vn.toString(getStringVal(vn, a));
if (s.Length == 0)
{
newVN = xslVN;
newVN.context[0] = -1;
}
else if (vg.parseFile(s, true))
{
newVN = vg.getNav();
newVN.context[0] = -1;
newVN.URIName = s;
}
else
{
state = END;
return -1;
}
state = END;
return 0;
}
else
{
state = END;
return -1;
}
}
else
return -1;
}
catch (NavException e)
{
}
}
}
break;
case FuncName.KEY:
throw new XPathEvalException(" key() not yet implemented ");
// break;
}
throw new XPathEvalException(" Function Expr can't eval to node set ");
}