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

WriteStartElement() public method

A method used to override the method "WriteStartElement" of XmlWriter.
public WriteStartElement ( string prefix, string localName, string ns ) : void
prefix string A parameter represents the namespace prefix of the element.
localName string A parameter represents the local name of the element.
ns string A parameter represents the namespace URI to associate with the element.
return void
        public override void WriteStartElement(string prefix, string localName, string ns) 
        {
            this.originalXmlWriter.WriteStartElement(prefix, localName, ns); 
            this.injectorXmlTextWriter.WriteStartElement(prefix, localName, ns);
        }