7 implementations of GetCurrent
System.Private.Xml (7)
System\Xml\Xsl\XPath\XPathBuilder.cs (1)
34QilNode IFocus.GetCurrent() { return GetCurrentNode(); }
System\Xml\Xsl\Xslt\Focus.cs (3)
71public QilNode GetCurrent() 134public QilNode GetCurrent() 175public QilNode? GetCurrent()
System\Xml\Xsl\Xslt\QilGeneratorEnv.cs (1)
60QilNode IFocus.GetCurrent() { return this.GetCurrentNode(); }
System\Xml\Xsl\Xslt\XPathPatternBuilder.cs (2)
419public QilNode GetCurrent() { numFixupCurrent++; return _fixupCurrent; } 437public QilNode GetCurrent()
7 references to GetCurrent
System.Private.Xml (7)
System\Xml\Xsl\XPath\XPathBuilder.cs (1)
898unknown = _environment.GetCurrent()!;
System\Xml\Xsl\Xslt\QilGeneratorEnv.cs (6)
119return ((IXPathEnvironment)this).GetCurrent()!; 129case FuncId.GenerateId: return CompileGenerateId(args.Count > 0 ? args[0] : env.GetCurrent()!); 187return _f.InvokeMsNamespaceUri(_f.ConvertToString(args[0]), env.GetCurrent()!); 431result = _f.Invoke(_generalKey, _f.ActualParameterList(i, resolvedName, key, env.GetCurrent()!)); 442return _f.Invoke(defList[0].Function!, _f.ActualParameterList(env.GetCurrent()!, key)); 449result.Add(_f.Invoke(keyDef.Function!, _f.ActualParameterList(env.GetCurrent()!, i)));