//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // [....] //------------------------------------------------------------------------------ namespace System.Xml.Serialization { using System; /// /// /// [To be supplied.] /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Interface | AttributeTargets.Method, AllowMultiple=true)] public class SoapIncludeAttribute : System.Attribute { Type type; /// /// /// [To be supplied.] /// public SoapIncludeAttribute(Type type) { this.type = type; } /// /// /// [To be supplied.] /// public Type Type { get { return type; } set { type = value; } } } }