本文整理汇总了C#中System.Xml.Xsl.Compiler.ResolveXmlNamespace方法的典型用法代码示例。如果您正苦于以下问题:C# Compiler.ResolveXmlNamespace方法的具体用法?C# Compiler.ResolveXmlNamespace怎么用?C# Compiler.ResolveXmlNamespace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Xml.Xsl.Compiler
的用法示例。
在下文中一共展示了Compiler.ResolveXmlNamespace方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: AddScript
private void AddScript(Compiler compiler) {
NavigatorInput input = compiler.Input;
ScriptingLanguage lang = ScriptingLanguage.JScript;
string implementsNamespace = null;
if (input.MoveToFirstAttribute()) {
do {
if (input.LocalName == input.Atoms.Language) {
string langName = input.Value.ToLower(CultureInfo.InvariantCulture); // Case insensetive !
if (langName == "jscript" || langName == "javascript") {
lang = ScriptingLanguage.JScript;
}
else if (langName == "vb" || langName == "visualbasic") {
lang = ScriptingLanguage.VisualBasic;
}
else if (langName == "c#" || langName == "csharp") {
lang = ScriptingLanguage.CSharp;
}
else {
throw new XsltException(Res.Xslt_ScriptInvalidLang, langName);
}
}
else if (input.LocalName == input.Atoms.ImplementsPrefix) {
if(! PrefixQName.ValidatePrefix(input.Value)) {
throw XsltException.InvalidAttrValue(input.LocalName, input.Value);
}
implementsNamespace = compiler.ResolveXmlNamespace(input.Value);
}
}
while (input.MoveToNextAttribute());
input.ToParent();
}
if (implementsNamespace == null) {
throw new XsltException(Res.Xslt_MissingAttribute, input.Atoms.ImplementsPrefix);
}
if (!input.Recurse() || input.NodeType != XPathNodeType.Text) {
throw new XsltException(Res.Xslt_ScriptEmpty);
}
compiler.AddScript(input.Value, lang, implementsNamespace, input.BaseURI, input.LineNumber);
input.ToParent();
}