SoapTypeAttribute Class
.NET Framework 3.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)
[AttributeUsageAttribute(AttributeTargets.Class|AttributeTargets.Struct|AttributeTargets.Enum|AttributeTargets.Interface)] [ComVisibleAttribute(true)] public sealed class SoapTypeAttribute : SoapAttribute
/** @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
Not applicable.
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 int member1; [SoapFieldAttribute(XmlElementName="MyXmlElement")] public string member2; public string member3; public double member4; // A field that is not serialized. [NonSerialized()] public string member5; public TestSimpleObject() { member1 = 11; member2 = "hello"; member3 = "hello"; member4 = 3.14159265; member5 = "hello world!"; } }
/** @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 Server 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 Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show: