本文整理汇总了C#中System.Xml.Xsl.Compiler.AddAttributeSet方法的典型用法代码示例。如果您正苦于以下问题:C# Compiler.AddAttributeSet方法的具体用法?C# Compiler.AddAttributeSet怎么用?C# Compiler.AddAttributeSet使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Xml.Xsl.Compiler
的用法示例。
在下文中一共展示了Compiler.AddAttributeSet方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CompileTopLevelElements
protected void CompileTopLevelElements(Compiler compiler) {
// Navigator positioned at parent root, need to move to child and then back
if (compiler.Recurse() == false) {
Debug.WriteLine("Nothing to compile, exiting");
return;
}
NavigatorInput input = compiler.Input;
bool notFirstElement = false;
do {
Debug.Trace(input);
switch (input.NodeType) {
case XPathNodeType.Element:
string name = input.LocalName;
string nspace = input.NamespaceURI;
if (Keywords.Equals(nspace, input.Atoms.XsltNamespace)) {
if (Keywords.Equals(name, input.Atoms.Import)) {
if (notFirstElement) {
throw new XsltException(Res.Xslt_NotFirstImport);
}
// We should compile imports in reverse order after all toplevel elements.
// remember it now and return to it in CompileImpoorts();
compiler.CompiledStylesheet.Imports.Add(compiler.GetSingleAttribute(compiler.Input.Atoms.Href));
}
else if (Keywords.Equals(name, input.Atoms.Include)) {
notFirstElement = true;
CompileInclude(compiler);
}
else {
notFirstElement = true;
compiler.PushNamespaceScope();
if (Keywords.Equals(name, input.Atoms.StripSpace)) {
CompileSpace(compiler, false);
}
else if (Keywords.Equals(name, input.Atoms.PreserveSpace)) {
CompileSpace(compiler, true);
}
else if (Keywords.Equals(name, input.Atoms.Output)) {
CompileOutput(compiler);
}
else if (Keywords.Equals(name, input.Atoms.Key)) {
CompileKey(compiler);
}
else if (Keywords.Equals(name, input.Atoms.DecimalFormat)) {
CompileDecimalFormat(compiler);
}
else if (Keywords.Equals(name, input.Atoms.NamespaceAlias)) {
CompileNamespaceAlias(compiler);
}
else if (Keywords.Equals(name, input.Atoms.AttributeSet)) {
compiler.AddAttributeSet(compiler.CreateAttributeSetAction());
}
else if (Keywords.Equals(name, input.Atoms.Variable)) {
VariableAction action = compiler.CreateVariableAction(VariableType.GlobalVariable);
if (action != null) {
AddAction(action);
}
}
else if (Keywords.Equals(name, input.Atoms.Param)) {
VariableAction action = compiler.CreateVariableAction(VariableType.GlobalParameter);
if (action != null) {
AddAction(action);
}
}
else if (Keywords.Equals(name, input.Atoms.Template)) {
compiler.AddTemplate(compiler.CreateTemplateAction());
}
else {
if (!compiler.ForwardCompatibility) {
throw XsltException.UnexpectedKeyword(compiler);
}
}
compiler.PopScope();
}
}
else if (nspace == input.Atoms.MsXsltNamespace && name == input.Atoms.Script) {
AddScript(compiler);
}
else {
if (Keywords.Equals(nspace, input.Atoms.Empty)) {
throw new XsltException(Res.Xslt_NullNsAtTopLevel, input.Name);
}
// Ignoring non-recognized namespace per XSLT spec 2.2
}
break;
case XPathNodeType.ProcessingInstruction:
case XPathNodeType.Comment:
case XPathNodeType.Whitespace:
case XPathNodeType.SignificantWhitespace:
break;
default:
throw new XsltException(Res.Xslt_InvalidContents, "xsl:stylesheet");
}
}
while (compiler.Advance());
compiler.ToParent();
//.........这里部分代码省略.........