using System; using System.Xml.Serialization; namespace BLToolkit.Reflection { /// /// Allows the to recognize a type generated /// by the BLToolkit when it serializes or deserializes an object. /// public class XmlIncludeAbstractAttribute : XmlIncludeAttribute { /// /// Initializes a new instance of the class. /// /// The of an abstract class to /// include its BLToolkit extensions. public XmlIncludeAbstractAttribute(Type type) : base(TypeBuilder.TypeFactory.GetType(type)) { } } }