System.Xml.Xsl.Runtime.XmlQueryOutput.AddNamespace C# (CSharp) Method

AddNamespace() private method

Add an in-scope namespace.
private AddNamespace ( string prefix, string ns ) : void
prefix string
ns string
return void
        private void AddNamespace(string prefix, string ns) {
            this.nsmgr.AddNamespace(prefix, ns);
            this.cntNmsp++;
            if (ns.Length == 0)
                this.useDefNmsp = true;
        }