SoapExtensionAttribute Class
Assembly: System.Web.Services (in system.web.services.dll)
XML Web service methods created using ASP.NET can be configured to run with a SOAP extension by applying an attribute to the XML Web service method. When a custom extension attribute is added to an XML Web service method or a method on a client proxy class, ASP.NET invokes the associated extension at the appropriate time. An extension attribute is a custom attribute class deriving from SoapExtensionAttribute. Derived attributes must override the ExtensionType property to return the type of extension that is associated with the attribute.
The following TraceExtensionAttribute class derives from SoapExtensionAttribute to support applying the attribute to an XML Web service method or a method in an XML Web service client proxy class. When applied to either, the TraceExtension SOAP extension runs with the method.
// Create a SoapExtensionAttribute for a SOAP extension that can be // applied to an XML Web service method. [AttributeUsage(AttributeTargets::Method)] public ref class TraceExtensionAttribute: public SoapExtensionAttribute { private: String^ myFilename; int myPriority; public: // Set the name of the log file were SOAP messages will be stored. TraceExtensionAttribute() : SoapExtensionAttribute() { myFilename = "C:\\logClient.txt"; } property Type^ ExtensionType { // Return the type of 'TraceExtension' class. virtual Type^ get() override { return TraceExtension::typeid; } } property int Priority { // User can set priority of the 'SoapExtension'. virtual int get() override { return myPriority; } virtual void set( int value ) override { myPriority = value; } } property String^ Filename { String^ get() { return myFilename; } void set( String^ value ) { myFilename = value; } } };
// Create a SoapExtensionAttribute for a SOAP extension that can be
// applied to an XML Web service method.
/** @attribute AttributeUsage(AttributeTargets.Method)
*/
public class TraceExtensionAttribute extends SoapExtensionAttribute
{
private String myFilename;
private int myPriority;
// Set the name of the log file were SOAP messages will be stored.
public TraceExtensionAttribute()
{
myFilename = "C:\\logClient.txt";
} //TraceExtensionAttribute
// Return the type of 'TraceExtension' class.
public Type get_ExtensionType()
{
return TraceExtension.class.ToType();
} //get_ExtensionType
// User can set priority of the 'SoapExtension'.
public int get_Priority()
{
return myPriority;
} //get_Priority
public void set_Priority(int value)
{
myPriority = value;
} //set_Priority
public String get_Filename()
{
return myFilename;
} //get_Filename
public void set_Filename(String value)
{
myFilename = value;
} //set_Filename
} //TraceExtensionAttribute
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.