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

WriteStartAttribute() public method

Writes the start of an attribute.
public WriteStartAttribute ( string prefix, string localName, string ns ) : void
prefix string Namespace prefix of the attribute.
localName string LocalName of the attribute.
ns string NamespaceURI of the attribute
return void
        public override void WriteStartAttribute(string prefix, string localName, string ns)
        {
            if ("xmlns" == prefix && ("xsi" == localName || "xsd" == localName))
            {
                this.isSkip = true;
            }
            else
            {
                base.WriteStartAttribute(prefix, localName, ns);
            }
        }