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

WriteStartElement() public method

Writes the start of an element
public WriteStartElement ( string prefix, string localName, string ns ) : void
prefix string Namespace prefix of the element.
localName string LocalName of the element.
ns string NamespaceURI of the element
return void
        public override void WriteStartElement(string prefix, string localName, string ns)
        {
            this.currentElement = localName;
            base.WriteStartElement(prefix, localName, ns);
        }