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

WriteAttributes() public method

A method used to writes out all the attributes found at the current position in the System.Xml.XmlReader.
public WriteAttributes ( XmlReader reader, bool defattr ) : void
reader XmlReader The XmlReader from which to copy the attributes.
defattr bool A parameter represents whether copy the default attributes from the XmlReader, true means copy, false means not copy.
return void
        public override void WriteAttributes(XmlReader reader, bool defattr)
        {
            base.WriteAttributes(reader, defattr);
        }