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