System.Xml.Xsl.XsltOld.DocumentScope.ResolveAtom C# (CSharp) 메소드

ResolveAtom() 개인적인 메소드

private ResolveAtom ( string prefix ) : string
prefix string
리턴 string
        internal string ResolveAtom(string prefix) {
            Debug.Assert(prefix != null && prefix.Length > 0);

            for (NamespaceDecl scope = this.scopes; scope != null; scope = scope.Next) {
                if (Keywords.Equals(scope.Prefix, prefix)) {
                    Debug.Assert(scope.Uri != null);
                    return scope.Uri;
                }
            }

            return null;
        }