System.Xml.Serialization.XmlAttributeEventArgs
namespace System.Xml.Serialization
{
public class XmlAttributeEventArgs : EventArgs
{
public XmlAttribute Attr { get; }
public string ExpectedAttributes { get; }
public int LineNumber { get; }
public int LinePosition { get; }
public object ObjectBeingDeserialized { get; }
}
}