1 instantiation of XsltLoader
System.Private.Xml (1)
System\Xml\Xsl\Xslt\Compiler.cs (1)
78new XsltLoader().Load(this, stylesheet, xmlResolver, origResolver);
14 references to XsltLoader
System.Private.Xml (14)
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (5)
1420XsltLoader.SetInfo(calltemplate, null, fakeCtxInfo); 1423Template newtemplate = AstFactory.Template(templatename, null, XsltLoader.nullMode, double.NaN, node.XslVersion); 1424XsltLoader.SetInfo(newtemplate, null, fakeCtxInfo); 1456XsltLoader.SetInfo(withparam, null, fakeCtxInfo); 1462XsltLoader.SetInfo(param, null, fakeCtxInfo);
System\Xml\Xsl\Xslt\XsltInput.cs (9)
561return (_attributes![attNum].flags & (_compiler.Version == 2 ? XsltLoader.V2Req : XsltLoader.V1Req)) != 0; 758int OptOrReq = V2 ? XsltLoader.V2Opt | XsltLoader.V2Req : XsltLoader.V1Opt | XsltLoader.V1Req; 829_compiler.Version == 2 && (flags & XsltLoader.V2Req) != 0 || 830_compiler.Version == 1 && (flags & XsltLoader.V1Req) != 0 && (!ForwardCompatibility || (flags & XsltLoader.V2Req) != 0)