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