System.Xml.Serialization.XmlSerializationReader.UnknownElement C# (CSharp) Method

UnknownElement() protected method

protected UnknownElement ( object o, XmlElement elem, string qnames ) : void
o object
elem XmlElement
qnames string
return void
        protected void UnknownElement(object o, XmlElement elem, string qnames)
        {
            if (_events.OnUnknownElement != null)
            {
                int lineNumber, linePosition;
                GetCurrentPosition(out lineNumber, out linePosition);
                XmlElementEventArgs e = new XmlElementEventArgs(elem, lineNumber, linePosition, o, qnames);
                _events.OnUnknownElement(_events.sender, e);
            }
        }

Same methods

XmlSerializationReader::UnknownElement ( object o, XmlElement elem ) : void