SoapFieldAttribute Class
.NET Framework 2.0
Customizes SOAP generation and processing for a field. This class cannot be inherited.
Namespace: System.Runtime.Remoting.Metadata
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ComVisibleAttribute(True)> _ <AttributeUsageAttribute(AttributeTargets.Field)> _ Public NotInheritable Class SoapFieldAttribute Inherits SoapAttribute 'Usage Dim instance As SoapFieldAttribute
/** @attribute ComVisibleAttribute(true) */ /** @attribute AttributeUsageAttribute(AttributeTargets.Field) */ public final class SoapFieldAttribute extends SoapAttribute
ComVisibleAttribute(true) AttributeUsageAttribute(AttributeTargets.Field) public final class SoapFieldAttribute extends SoapAttribute
The following code example demonstrates customization of SOAP generated for a field of a class with the SoapFieldAttribute. 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.SoapFieldAttribute
System.Attribute
System.Runtime.Remoting.Metadata.SoapAttribute
System.Runtime.Remoting.Metadata.SoapFieldAttribute
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.
Community Additions
ADD
Show: