System.Xml.Xsl.Runtime.XmlAttributeCache.WriteNamespaceDeclaration C# (CSharp) Method

WriteNamespaceDeclaration() private method

Pass through namespaces to underlying writer. If any attributes have been cached, flush them.
private WriteNamespaceDeclaration ( string prefix, string ns ) : void
prefix string
ns string
return void
        internal override void WriteNamespaceDeclaration(string prefix, string ns) {
            FlushAttributes();
            this.wrapped.WriteNamespaceDeclaration(prefix, ns);
        }