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

WriteStartAttribute() public method

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