1 instantiation of XsltLoader
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\Compiler.cs (1)
95new XsltLoader().Load(this, stylesheet, xmlResolver);
14 references to XsltLoader
System.Data.SqlXml (14)
System\Xml\Xsl\Xslt\XslAstAnalyzer.cs (5)
1262XsltLoader.SetInfo(calltemplate, null, fakeCtxInfo); 1265Template newtemplate = AstFactory.Template(templatename, null, XsltLoader.nullMode, double.NaN, node.XslVersion); 1266XsltLoader.SetInfo(newtemplate, null, fakeCtxInfo); 1295XsltLoader.SetInfo(withparam, null, fakeCtxInfo); 1301XsltLoader.SetInfo(param, null, fakeCtxInfo);
System\Xml\Xsl\Xslt\XsltInput.cs (9)
487return (attributes[attNum].flags & (compiler.Version == 2 ? XsltLoader.V2Req : XsltLoader.V1Req)) != 0; 657int OptOrReq = V2 ? XsltLoader.V2Opt | XsltLoader.V2Req : XsltLoader.V1Opt | XsltLoader.V1Req; 710compiler.Version == 2 && (flags & XsltLoader.V2Req) != 0 || 711compiler.Version == 1 && (flags & XsltLoader.V1Req) != 0 && (!ForwardCompatibility || (flags & XsltLoader.V2Req) != 0)