DocumentScope.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / DocumentScope.cs / 1305376 / DocumentScope.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
// [....] 
//-----------------------------------------------------------------------------
 
namespace System.Xml.Xsl.XsltOld { 
    using Res = System.Xml.Utils.Res;
    using System; 
    using System.Diagnostics;
    using System.Xml;
    using System.Xml.XPath;
 
    internal class DocumentScope {
        protected NamespaceDecl scopes; 
 
        internal NamespaceDecl Scopes {
            get { return this.scopes; } 
        }

        internal NamespaceDecl AddNamespace(string prefix, string uri, string prevDefaultNsUri) {
            this.scopes = new NamespaceDecl(prefix, uri, prevDefaultNsUri, this.scopes); 
            return this.scopes;
        } 
 
        internal string ResolveAtom(string prefix) {
            Debug.Assert(prefix != null && prefix.Length > 0); 

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

            return null; 
        }

        internal string ResolveNonAtom(string prefix) {
            Debug.Assert(prefix != null && prefix.Length > 0); 

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

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK