17 references to InstructionFlags
System.Data.SqlXml (17)
System\Xml\Xsl\Xslt\XsltLoader.cs (17)
978
LoadEndTag(LoadInstructions(
InstructionFlags
.AllowParam)), ctxInfo
1246
return LoadInstructions(new List<XslNode>(),
InstructionFlags
.None);
1249
private List<XslNode> LoadInstructions(
InstructionFlags
flags) {
1254
return LoadInstructions(content,
InstructionFlags
.None);
1259
private List<XslNode> LoadInstructions(List<XslNode> content,
InstructionFlags
flags) {
1277
InstructionFlags
instrFlag = (
1278
Ref.Equal(name, atoms.Param) ?
InstructionFlags
.AllowParam :
1279
Ref.Equal(name, atoms.Sort ) ?
InstructionFlags
.AllowSort :
1280
/*else */
InstructionFlags
.None
1282
if (instrFlag !=
InstructionFlags
.None) {
1352
private List<XslNode> LoadWithParams(
InstructionFlags
flags) {
1365
} else if (flags ==
InstructionFlags
.AllowSort && input.IsXsltKeyword(atoms.Sort)) {
1367
} else if (flags ==
InstructionFlags
.AllowFallback && input.IsXsltKeyword(atoms.Fallback)) {
1396
List<XslNode> content = LoadWithParams(
InstructionFlags
.None);
1432
List<XslNode> content = LoadWithParams(
InstructionFlags
.AllowSort);
1448
List<XslNode> content = LoadWithParams(
InstructionFlags
.None);
1587
List<XslNode> content = LoadInstructions(
InstructionFlags
.AllowSort);