SoapTypeAttribute Class
.NET Framework 2.0
Customizes SOAP generation and processing for target types. This class cannot be inherited.
Namespace: System.Runtime.Remoting.Metadata
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Class Or AttributeTargets.Struct Or AttributeTargets.Enum Or AttributeTargets.Interface)> _ <ComVisibleAttribute(True)> _ Public NotInheritable Class SoapTypeAttribute Inherits SoapAttribute 'Usage Dim instance As SoapTypeAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface) */ /** @attribute ComVisibleAttribute(true) */ public final class SoapTypeAttribute extends SoapAttribute
AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface) ComVisibleAttribute(true) public final class SoapTypeAttribute extends SoapAttribute
The following code example demonstrates customization of SOAP generated for a class with the SoapTypeAttribute. The SOAP can be produced by the code shown in the SerializableAttribute class example.
<Serializable(), SoapTypeAttribute(XmlNamespace := "MyXmlNamespace")> Public Class TestSimpleObject Public member1 As Integer <SoapFieldAttribute(XmlElementName := "MyXmlElement")> Public member2 As String Public member3 As String Public member4 As Double ' A field that is not serialized. <NonSerialized()> Public member5 As String Public Sub New() member1 = 11 member2 = "hello" member3 = "hello" member4 = 3.14159265 member5 = "hello world!" End Sub 'New End Class 'TestSimpleObject
/** @attribute Serializable() */ /** @attribute SoapTypeAttribute(XmlNamespace = "MyXmlNamespace") */ public class TestSimpleObject { public int member1; /** @attribute SoapFieldAttribute(XmlElementName = "MyXmlElement") */ public String member2; public String member3; public double member4; // A field that is not serialized. /** @attribute NonSerialized() */ public String member5; public TestSimpleObject() { member1 = 11; member2 = "hello"; member3 = "hello"; member4 = 3.14159265; member5 = "hello world!"; } //TestSimpleObject } //TestSimpleObject
System.Object
System.Attribute
System.Runtime.Remoting.Metadata.SoapAttribute
System.Runtime.Remoting.Metadata.SoapTypeAttribute
System.Attribute
System.Runtime.Remoting.Metadata.SoapAttribute
System.Runtime.Remoting.Metadata.SoapTypeAttribute
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Show: