System.Xml.Xsl.Xslt.XsltLoader.XslNextMatch C# (CSharp) Method

XslNextMatch() private method

private XslNextMatch ( ) : XslNode
return XslNode
        private XslNode XslNextMatch() {
            ContextInfo ctxInfo = input.GetAttributes();

            // We need to do this dynamic any way:
            //if (!input.CanHaveApplyImports) {
            //    ReportError(/*[XT_015]*/SR.Xslt_InvalidApplyImports);
            //    input.SkipNode();
            //    return null;
            //}

            ReportNYI("xsl:next-match");

            List<XslNode> content = LoadWithParams(InstructionFlags.AllowFallback);
            ctxInfo.SaveExtendedLineInfo(input);

            return null;
        }