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

◆ ResolveAtom()

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

Definition at line 15 of file DocumentScope.cs.

16 {
17 for (NamespaceDecl next = scopes; next != null; next = next.Next)
18 {
19 if (Ref.Equal(next.Prefix, prefix))
20 {
21 return next.Uri;
22 }
23 }
24 return null;
25 }

References System.Xml.Ref.Equal(), System.Xml.Xsl.XsltOld.NamespaceDecl.Next, System.prefix, and System.Xml.Xsl.XsltOld.DocumentScope.scopes.