//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Web.Services.Protocols { using System.Web.Services; using System.Xml.Serialization; using System; using System.Reflection; using System.Collections; using System.IO; using System.ComponentModel; /// /// /// [To be supplied.] /// public abstract class SoapExtensionAttribute : System.Attribute { /// /// /// [To be supplied.] /// public abstract Type ExtensionType { get; } /// /// /// [To be supplied.] /// public abstract int Priority { get; set; } } }