Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ResolveNonAtom()

string System.Xml.Xsl.XsltOld.DocumentScope.ResolveNonAtom ( string prefix)
inlinepackageinherited

Definition at line 27 of file DocumentScope.cs.

28 {
29 for (NamespaceDecl next = scopes; next != null; next = next.Next)
30 {
31 if (next.Prefix == prefix)
32 {
33 return next.Uri;
34 }
35 }
36 return null;
37 }

References System.Xml.Xsl.XsltOld.NamespaceDecl.Next, System.prefix, and System.Xml.Xsl.XsltOld.DocumentScope.scopes.