Microsoft.Protocols.TestSuites.Common.XmlWriterInjector.WriteQualifiedName C# (CSharp) Method

WriteQualifiedName() public method

A method used to writes out the namespace-qualified name.
public WriteQualifiedName ( string localName, string ns ) : void
localName string A parameter represents the local name to write.
ns string >A parameter represents the namespace URI for the name.
return void
        public override void WriteQualifiedName(string localName, string ns)
        {
            this.originalXmlWriter.WriteQualifiedName(localName, ns);
            this.injectorXmlTextWriter.WriteQualifiedName(localName, ns);
        }