System.Xml.Serialization.XmlAnyElementAttribute
namespace System.Xml.Serialization
{
public class XmlAnyElementAttribute : Attribute
{
public string Name { get; set; }
public string Namespace { get; set; }
public int Order { get; set; }
public XmlAnyElementAttribute();
public XmlAnyElementAttribute(string name);
public XmlAnyElementAttribute(string name, string ns);
}
}