System.Xml.Serialization.XmlAttributes
namespace System.Xml.Serialization
{
public class XmlAttributes
{
public XmlAnyAttributeAttribute XmlAnyAttribute { get; set; }
public XmlAnyElementAttributes XmlAnyElements { get; }
public XmlArrayAttribute XmlArray { get; set; }
public XmlArrayItemAttributes XmlArrayItems { get; }
public XmlAttributeAttribute XmlAttribute { get; set; }
public XmlChoiceIdentifierAttribute XmlChoiceIdentifier { get; }
public object XmlDefaultValue { get; set; }
public XmlElementAttributes XmlElements { get; }
public XmlEnumAttribute XmlEnum { get; set; }
public bool XmlIgnore { get; set; }
public bool Xmlns { get; set; }
public XmlRootAttribute XmlRoot { get; set; }
public XmlTextAttribute XmlText { get; set; }
public XmlTypeAttribute XmlType { get; set; }
public XmlAttributes();
public XmlAttributes(ICustomAttributeProvider provider);
}
}