System.Xml.Serialization.SoapAttributes
namespace System.Xml.Serialization
{
public class SoapAttributes
{
public SoapAttributeAttribute SoapAttribute { get; set; }
public object SoapDefaultValue { get; set; }
public SoapElementAttribute SoapElement { get; set; }
public SoapEnumAttribute SoapEnum { get; set; }
public bool SoapIgnore { get; set; }
public SoapTypeAttribute SoapType { get; set; }
public SoapAttributes();
public SoapAttributes(ICustomAttributeProvider provider);
}
}