// // SoapIncludeAttribute.cs: // // Author: // John Donagher (john@webmeta.com) // // (C) 2002 John Donagher // using System; namespace System.Xml.Serialization { /// /// Summary description for SoapIncludeAttribute. /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method)] public class SoapIncludeAttribute : Attribute { private Type type; public SoapIncludeAttribute( Type type) { Type = type; } public Type Type { get { return type; } set { type = value; } } } }